Toggle navigation
Home
Latest pastes
FAQ
Random
BitBin is shutting down!
Register
Login
tak
SUBMITTED BY:
tak
DATE:
Jan. 8, 2022, 9:10 p.m.
FORMAT:
Python 3
SIZE:
153 Bytes
Raw
Download
Tweet
HITS:
434
Go to comments
Report
def
fib
(
n
):
if
n
<=
1
:
return
n
if
n
>
0
:
return
fib
(
n
-
1
)
+
fib
(
n
-
2
)
if
__name__
==
"__main__"
:
print
(
fib
(
9
))
Please enable JavaScript to view the
comments powered by Disqus.
comments powered by
Disqus