# Sa while petljom broj = 0 while (broj <= 100): print(broj) broj += 1 input() # Sa for petljom for broj in range(101): print(broj) input()