# Title: Rain around the mount # Author: Lucca Asbury # Date: 9/06/2025 # Version: 1.0 #Purpose: To calculate whether to wear a jacket or not weather = input("What is the weather doing from either rain or shine? ") if weather == "rain": print('You should wear a raincoat') elif weather == "shine": print('You dont need a raincoat') else: print("Invalid weather. Please enter 'rain' or 'shine'.") print('The program has ended.')