#Title: Multiply by 10 #Author: Max Clarkin #Date: 05/06/2026 #Ver: 1 #Purpose: To ask for a number and multiply it by ten number = int(input('What number do you want to multiply by 10? ')) if number <= 11: print(f"The answer is {number * 10} ") else: print('That math is too hard ') print('The program has finished')