#Title: Weather #Author: Elena #Date: 14/11/25 #Version: 1 #Purpose: Ask whether its rain or shine to know if they need 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")