#Title: Rain or shine #Author: Aidan McGreal #Date: 17/11/2025 #Version: 2 #purpose: this code tells you whether you need a raincoat or not weather = input('what is the weather doing from either rain or shine? ').lower() if weather == '': print('You should wear a raincoat') else: print("You don't need a raincoat ") print('The program has ended.')