number = int(input("Enter a number: ")) count = 1 while count <= 12 : print(count, "x", number, "=", count * number) count = count + 1