#title: Rain or shine #author: Adam #date: 5 June 2026 #version: 1 #purpose: To ask if it is raining and decide if the person needs a raincoat 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")