#Title: Rain or Shine #Author: Keegan Downey #Date: 13/11/2025 #Version: 1 #Purpose: ask what the weather is and give advise on weather to use a raincoat or not weather = input("What is the weather doing 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.")