#title: Rain or shine #author: Blake #date: 05/06/2026 #version: 1 #purpose: To tell the person if they need a raincoat or not weather = input("What is the weather doing from either rain or shine? ") if weather == "rain": print ("you should wear a raincoat") print ("this program has ended") else: print ("You don't need a raincoat") print ("this program has ended")