#Title: March around the Mount #Author: Bryan Li'Wagener #Date: 14/11/2025 #Version: 1 #Purpose: To ask what number they want to multiply by 10 number =int(input("What number do you want multiply by 10? ")) answer= number*10 if number<11: print(f"{number}x10={answer}") else: print("That maths is to hard") print("The program has ended")