#Title: Weather Decision Program #Author: Henri Finn #Date: 13/11/2025 #Version: 1.0 #Purpose: Ask about the weather and give advice on whether to wear a raincoat or not. weather = input("What is the weather doing from either rain or shine? ").lower() if weather == "rain": print("You should wear a raincoat") else: print("You don’t need a raincoat") print("The program has ended.")