# Title: Rain around the mount # Author: Vinnie Ball # Date: 12/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') else: print('You dont need a raincoat') print('The program has ended.')