#Title:Rain or shine #Author:Reign Hammond #Date:08/06/26 #Version:1 #Purpose:Ask the person "Is the weather either rain or shine?" 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.")