x1, x2 = int(input()), int(input()) arr = [] for i in range(x1, x2 + 1): arr.append(i) print(*arr)