blob: a27d4ce47cbc903c7432a0094960c15c3fe9477a [file] [log] [blame]
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +01001def Fib(n):
2 if n == 0 or n == 1:
3 return 1
4 else:
5 return Fib(n-1) + Fib(n-2)