Compute fib(4) using recursion:
fib(4)
Recursive Definition: fib(n) = fib(n-1) + fib(n-2), with fib(0)=0, fib(1)=1