#Title:Rain or Shine #Author:Lochlan Moore #Date: 05/06/25 #Version: 1.1 #Purpose: Ask for the weather and suggests for the user to wear a raincoat depending on the answer weather = input('What is the weather doing from either rain or shine? ') if weather == 'rain': print('you should wear a raincoat') else: print("you don't need a raincoat") print('This program has ended.')