#title: Multiply x 10 #Author: Hugo Hicks #Version: V1 number= int(input('What number do you want to multiply by 10?')) if number >=11: print('That math is too hard') else: input(number * 10) print('The program has ended.')