# title: Rain or shine # auther: Josh waghorn # date: 13/11/25 # version: 1.00 # purpos: to tell you what to do based on the weather weather = input("What is the weather doing from either rain or shine? ") if weather == "rain": print("You should wear a raincoat") elif weather == "shine": print("You don't need a raincoat.") print("The program has ended.")