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