#Title: Rain or shine #Author: Surtr O'Connor #Date: 05/06/2026 #Version: 1 #Purpose: To ask what the weather is doing weather = input('What is the weather doing from either rain or shine? ') if weather == 'rain': print('You should wear a raincoat') elif weather == 'Rain': print('You should wear a raincoat') else: print("You don't need a raincoat") print('The program has ended.')