#Title: March around the mount #Author: Liam Baker Campbell #Date: 09/06/25 #Version: Version 1 #Purpose: Any number multiplied by ten number = int(input("What number do you want to multiply by 10? ")) if number < 11: answer = number*10 print(f'{number}x10={answer}.') else: print('That math is too hard.') print('The program has ended.')