The Fibonacci numbers (denoted ) form a sequence where each number is the sum of the two preceding ones: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, ...
, and
Finish the template of a recursive function that finds the nth Fibonacci number. Here, you'll need to make multiple recursive calls inside the function!
You do NOT need to take input or call this function!