#Title: of the sequence #Author: Damian Clark #Date: 17/06/25 #Version: Version 1 #Purpose: Summary of what the code does / The desired outcome. #Tell: the operator with the program is about number = int(input('What number do you want to multiply by 10? ')) if number < 11: answer = 10*number print(f'{number} x 10 = {answer}') else: print('That math is too hard.') #Tell the user the program has ended print('The program has ended.')