$\mathbf{Algorithm}\ \Fib(n)\mathrm{:}$ 
			$\mathbf{if}\ n = 0\ \mathrm{or}\ n = 1$ 
			$\mathbf{then}\ f = n$ 
			$\mathbf{else}\ f = \Fib(n - 1) + \Fib(n - 2)$ 
			$\mathbf{endif};$ 
			$\mathbf{return}\ f$ 
		
We can draw a recursive tree to see how many calls there are to $ FIB(0) $

As can be seen, $ FIB(0) $ is called 4 times, which corresponds to $f_{n-1} = f_{5-1} = f_{4}$