#a. Title: Rain or shine #b. Author: sande #c. Date: 09/06/25 #d. Version 1 #e. Purpose: Ask "what is the weather doing from ether rain or shine" weather = input("What is the weather doing from either rain or shine?") #rain input if weather =="rain": print("You should wear a raincoat") #shine input elif weather == "shine": print("You don't need a raincoat.") print("The program has ended.")