#title rain or shine #Author Santino Becker #Date:13/11/25 #Version: 1 #purpose:display information about the weather weather = input("What is the weather doing from either rain or shine?") if weather == "rain": print("You should wear a rain coat") else: print("You don't send a raincoat") print("The program has ended.")