def myRange(startIndex, count, offset):
	return xrange(startIndex, count + offset - 1, offset)

count = 3132
offset = 200
for x in myRange(0, count, offset):
    print x