# Title: Multiply by 10 # Author: Hailey Lau # Date: 10/06/25 # Version: Version 1 # Purpose: The program will multiply the number you give by 10 but it can't times numbers higher than 11 # Asking the user what their number is and storing it into a variable and with the variable times it by 10 number = int(input("What number do you want to multiply by 10? ")) if number < 11: answer = number * 10 print(f' {number} x 10 = {answer}') # But if the number it too hard tell the user else: print('That math is too hard.') # Informing the user that the program has ended print('The program has ended.')