The Fibonacci numbers Fn are defined as follows:
Fn = | ⎧ ⎪ ⎨ ⎪ ⎩ |
|
Therefore, the first Fibonacci numbers are 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, …
For every given natural number n, compute Fn mod108 + 7.
Input
Input consists of several n. Assume 0 ≤ n ≤ 105.
Output
For every given n, print Fn mod108 + 7.
Input
0 1 10 100000
Output
0 1 55 33178829