fork download
# your code goes here
n=int(input())
m=int(input())
while n<m:
	print(n," ",end="")
	n=n+1
print("$")
Success #stdin #stdout 0.02s 9196KB
stdin
6
9
stdout
6  7  8  $