Function f(n)
Very easy
Execution time limit is 1 second
Runtime memory usage limit is 128 megabytes
Function is given with recurrent relation:
f(n) = f(n-1) + f(n - 2) + ... + f(2) + f(1), f(1) = 1
Find the value of .
Input
One positive integer .
Output
Print the value of .
Examples
Input #3
Answer #3
Input #4
Answer #4
Submissions 2K
Acceptance rate 25%