#Title: Multiply #Author: Beau Culliford #Date: 5/06/2026 #Version: 1 #Purpose: This program will multiply any number under 11 by 10 number = int(input("What number do you want to multiply by 10? ")) ans = number * 10 if number < 11: print(f"{mult} x 10 = {ans}") else: print("That math is too hard!") print("This program has ended")