# Title: Rain or Shine? # Author: Liam Baker Campbell # Date: 09/06/25 # Version: Version 1 # Purpose: To determine if the weather is raining or sunny. weather = input('What is the weather doing from either rain of shine? ') if weather == 'rain': print('You should wear a rain coat.') else: print("You don't need a raincoat.") print('The program has ended')