# Title: Rain or Shine # Author: Ben Cook # Date: 17/11/25 # Version: 1 # Purpose: To tell a user whether or not to wear a raincoat. weather = input("What is the weather doing from either rain or shine? ") if weather == "rain": print("A use of a raincoat is recomended") else: print("You don't need a raincoat.") print("The program has ended.")