i = 0 while (i<=10): print(i) i = i+1
i = 10 while (i>0): print(i) i = i-1
for i in range(10): print(i)
for i in range(10,0,-1): print(i)