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