#Title: Multiply by 10 #Author: Dima Bykov #Date: 14/11/2025 #Version: 1 #Purpose: Limited calculator number = int(input("What number do you want to multiply by 10? ")) if number < 11: answer = number * 10 print(f"{number} x 10 = {answer}") print("The program has ended.") else: print("That math is too hard") print("The program has ended.")