#MULTIPLICATION TABLE num = int(input("Enter a number to display its multiplication table: ")) for i in range(1, 11): print(num, 'x', i, '=', num*i)