n = int(input("enter a number")) for multiplier in range(1, 13) : result = multiplier * n print(multiplier, "times", n, "=", result)