#Title: rain or sine #Author: Isaac Orsler #Date: 13/11/2025 #Version: v1 #Purpose: To tell the user to wear 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")