num = int(input("enter a number: ")) for i in range(1, 13): print("{} x {} = {}".format(i, num, i * num))