# Title: Multiply by 10 # Author:Gurshan # Date: 13/11/2025 # Version: 1 # Purpose: Asks the user for a number, multiplies it by 10 if it's less than 11, # otherwise displays that the math is too hard. Ends with a closing message. number = int(input("What number do you want to multiply by 10? ")) if number < 11: answer = number * 10 print(f"{number} x 10 = {answer}") else: print("That math is too hard.") print("The program has ended.")