#Title: multiplication #Author: Adam #Date: 5 June 2026 #Version: 1 #Purpose: this program will time a number 10 or smaller by 10. number = int(input("What number would you like to multiply by 10? ")) answer = number * 10 if number <= 10: print (f"10 X {number} = {answer}") else: print("That math is too hard") print ("This program has ended")