# Title: Rain around the mount # Author: Lucca Asbury # Date: 10/06/2025 # Version: 2.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 don't need a raincoat") print('The program has ended.')