Recursion [I]
The Fibonacci Sequence is a famous sequence defined by the recurrence relation:
For example,
In this question, you must compute
Input
Input will contain a single integer
Output
Output should contain a single integer, representing
Constraints
Example
Input
Copy
5
Output
Copy
8
Comments