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