print( "Let's count up!" ) number = int(input( "Enter a number: " )) start = 1 while start <= number : print( start ) start = start + 1