# Title: Multiply by 10 # Author: Stefanie Remondavia # Date: 10/06/25 # Version 1 # Purpose: The program will multiply the number you give by 10 # asking the person of what number they want to multiply 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}') else: print('That math is too hard.') # telling the person the program has ended print('The program has ended. ')