Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
fb_series
#python 2.7.12 def fibonacci(n): if n<2: return n else: return(fibonacci(n-1) + fibonacci(n-2)) n = raw_input("nth number =") print fibonacci(int(n))
run
|
edit
|
history
|
help
0
Execute linux commands
PyClass2
Cofe
python power
Attempt to break cpu limit
Glimpse Of Numpy Python
binary
Epic
e742c63f03ab602f2b38433ffc28b5145ba1332d
fb_series