Question from the Python test

What is the output of the following code? ``` def f(x): if x == 0: return 1 else: return f(x - 1) + f(x - 2) print(f(3)) ```