#title: Rain Or Shine #author: Hugo Hicks #date: 12 June 2025 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('The program has ended.')