#Title: MUTIPLY BY 10 #Author: Tua Talagi-Meti #Date: 4/06/2026 #Version: V1 #Purpose: This program will ask for a number and multiply it by 10. number = int(input("What number do you want to multiply by 10? ")) if number < 11: answer = number * 10 print(f"{number} x 10 = {answer}" ) if number > 11: print("That math is too hard.") #Display output print ("The program has ended.")