x,y= input().split()
x = int(x)
y = int(y)
list1 =" "
while x <= y:
x = str(x)
list1 = list1 + x + " "
x += 1
print(list1)