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