#a. Title: Rain around the Mount #b. Author: Davi Barbosa #c. Date: 30/10/25 #d. Version: Version 1 #e. Purpose: Inform the user about the weather conditions at the mount. print('Welcome to the wheather calculator!') weather = input('What is the weather doing?...rain or shine? ') if weather == 'rain' : print('You should wear a raincoat') else: print('You dont need a raincoat') print('The program has ended')