# Title: Rain or shine # Author: Lucas # Date: 13/11/25 # Verison: V1 # Purpose: Display massage using the weather weather = input ("What is the Weather doing?") if weather == "rain": print( "You should wear a raincoat") else: print ("You don't need a raincoat") print ("The program has ended.")