# Title: Message # Author: Jasmeen Kaur Mann # Date: 4th Thursday June 2026 # Version: 1 # Purpose: Create a message saying "What is the weather doing from either rain or shine? " # Repeat message weather= input(f"What is the weather doing from either rain or shine? ") if weather == 'rain': print(f"You should wear a raincoat") else: print(f"You don't need a raincoat") print('The program has ended')