#Title: Rain or shine #Author: Cruze Sidney #Date: 4/6/26 #Version: 1 #Purpose: wether to wear a raincoat or not depending on the weather weather = input('What is the weather doing from either rain or shine? ') if weather == "rain": print('You should wear a raincoat.') else: print("you don't need a raincoat.") print('The program has ended')