#Lutece1000. Fibonacci数的后9位

Fibonacci数的后9位

Migrated from Lutece 1000 Fibonacci数的后9位

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

Fibonacci数列定义如下:

f(0)=1,f(1)=1f(0)=1, f(1)=1

f(n)=f(n1)+f(n2)f(n)=f(n-1)+f(n-2), 当n2n\ge 2

给出nn,求出f(n)f(n)的后99位并输出,不足99位,请在前面补00

Input

有多组测试数据。每一组测试数据只有一行,为整数nn。其中,0n<3000\le n<300

Output

对应每组输入,输出一行题目要求的结果。

Samples

2
000000002
150
907386349

Note

由于每组测试数据都是只有一个整数,所以可以利用scanf的返回值来判断输入数据是否结束,程序框架可以如下:

#include <stdio.h>
int main()
{
    int a;
    while(scanf("%d", &a) == 1)
    {
         //处理数据
         //输出结果
    }
    return 0;
}

Resources

wxiaoping C语言练习