fib

Run Settings
LanguagePython
Language Version
Run Command
def fib(n): if n==1 or n==2: return n-1 res = fib(n-1) + fib(n-2) return res print(fib(30))
Editor Settings
Theme
Key bindings
Full width
Lines