#Title: Rain or shine #Author: dallas mete #Date: 4/06/26 #Version:2 #Purpose: to ask a question and get a response 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") #display output print("The program has ended.")