#Title: Multiply by 10 #Author: Otis Keeble #Date: 04/06/2026 #Version: 1 #Purpose: To ask for a number and then multiply that number by 10 only if it's smaller than 11 number = int(input('What number do you want to multiply by 10? ')) answer = number * 10 if number < 11: print(f'{number} x 10 = {answer}') else: print('That math is too hard') print('The program has ended.')