# Title: Rain or Shine # Author: Varun Merai # Date: 9/06/2025 # Version: Version 1 - first version, Version 1.1 - minor revisions, Version 2 - major revisions # Purpose: To determine if the weather is rainy or sunny weather = input('\nWhat is the 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.")