for i in range(5): print(i)
count=1 while count<=5: print(count) count+=1
for i in range(10): if i==5: break