Recursion
The Fibonacci numbers, denoted Fn can be calculated recursively. It follows this rule:
Define the function int fibonacci(int n) which gives the nth Fibonacci number by using recursion.
int fibonacci(int n)