Recursion [I]

View as PDF

Submit solution

Points: 100
Time limit: 1.0s
Memory limit: 256M

Author:
Problem type

Recursion [I]

The Fibonacci Sequence is a famous sequence defined by the recurrence relation:

{F(n)=10n1F(n)=F(n1)+F(n2)n2

For example, F(0),F(1),F(2),F(3),F(4) can be written as 1,1,2,3,5

In this question, you must compute F(n) for some value n. Since the value may be quite large, output your answer modulo 109+7.

Input

Input will contain a single integer n

Output

Output should contain a single integer, representing F(n)mod109+7.

Constraints

  • 0n1018

Example

Input
Copy
5
Output
Copy
8

Comments

There are no comments at the moment.