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