#Title:Rain or shine #Author:Finn Kayser #Date:05/06/26 #Version:1 #Purpose:Tell the user to wear a raincoat or not weather = input('What is the weather doing from 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')