''' Purpose: print integers from a user-specified upward interval n ... m ''' # get interval of interest reply = input( "Enter start and end: " ) m, n = reply.split() m, n = int( m ), int ( n ) # print out integers m to n for i in range( ..., ... ) : print( i )