blob: a27d4ce47cbc903c7432a0094960c15c3fe9477a [file] [log] [blame]
def Fib(n):
if n == 0 or n == 1:
return 1
else:
return Fib(n-1) + Fib(n-2)