16 lines
172 B
Python
16 lines
172 B
Python
|
# Sa while petljom
|
||
|
|
||
|
broj = 0
|
||
|
|
||
|
while (broj <= 100):
|
||
|
print(broj)
|
||
|
broj += 1
|
||
|
|
||
|
input()
|
||
|
|
||
|
# Sa for petljom
|
||
|
|
||
|
for broj in range(101):
|
||
|
print(broj)
|
||
|
|
||
|
input()
|