#Title: Multiply by 10 #Author: Aidan McGreal #Date: 17/11/2025 #Version: 2 #Purpose: this program multiplies numbers by 10 number = int(input('What number do you want to multiply by 10? ')) answer = number*10 if number > 10: print('That math is too hard.') else: print (f'{number} x 10 = {answer}') print ('The program has ended.')