# Title: Message # Author: Jasmeen Kaur Mann # Date: 4th Thursday June 2026 # Version: 1 # Purpose: Ask for a number and multiply by 10. If number is to high display message the result "number x 10 = answer". # Repeat message number= input(f"What number do you want to multiply by 10? ") if number < 11: print(f"You should wear a raincoat") else: print(f"That math is too hard") print('The program has ended')