mirror of
https://github.com/CPunch/Cosmo.git
synced 2024-11-05 08:10:05 +00:00
7 lines
98 B
Python
7 lines
98 B
Python
def fib(i):
|
|
if i < 2:
|
|
return i
|
|
|
|
return fib(i - 2) + fib(i - 1)
|
|
|
|
print(fib(35)) |