x = 1200

while x <= 1210:
	print(x)
	x += 1

print("All done!")
