summaryrefslogtreecommitdiffstats
path: root/fib.py
blob: 129fb513faa748ce4e359918b8dfb34496d268c0 (plain) (blame)
1
2
3
4
5
def fib(n):
    if n <= 2:
        return 1
    else:
        return fib(n-1) + fib(n-2)