import sys
from_to = []
for n in sys.stdin:
  from_to.append(int(n))

for i in range( from_to[0], (1+ from_to[1]) ):
  print(i)