# Title: Rain or shine # Author: Chardae Bryant # Date: 17/11/2025 # Version 1: # Purpose: to find out what the weather is doing weather = input("What is the weather doing from either rain or shine?") # Check user input if weather=="rain": print("You should wear a raincoat") else: print("You don't need a raincoat") print("The program has ended.")