#Title: Conditional statement #Author: Josie Crowder #Date: 13/11/25 #Version: Version 1 #Purpose: To tell the user 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") else: print("You don't need a raincoat") print("The program has ended.")