#D6500. Fibonacci Number

    ID: 5403 Type: Default 1000ms 134MiB

Fibonacci Number

Fibonacci Number

Write a program which prints nn-th fibonacci number for a given integer nn. The nn-th fibonacci number is defined by the following recursive formula:

\begin{equation*} fib(n)= \left \{ \begin{array}{ll} 1 & (n = 0) \\ 1 & (n = 1) \\ fib(n - 1) + fib(n - 2) & \\ \end{array} \right. \end{equation*}

Constraints

  • 0n440 \leq n \leq 44

Input

An integer nn is given.

Example

Input

3

Output

3

inputFormat

Input

An integer nn is given.

Example

Input

3

outputFormat

Output

3

样例

3
3