# for i in range(start, end, step) for i in range(5, 0, -1): print(i) 5 4 3 2 1
for i in reversed(xrange(101)): print i,