6 lines
84 B
Python
6 lines
84 B
Python
a, b = 0, 1
|
|
for num in range(1, 101):
|
|
a, b = b, a + b
|
|
print(f'{num}: {a}')
|
|
|