问题 D Fibonacci Number
时间限制: 1 Sec 内存限制: 128 MB[ 提交]
题目描述
The Fibonacci Numbers {0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55 ,...} are defined by the recurrence: F0 = 0 F1 = 1 Fi = Fi-1 + Fi-2 for all i >= 2 Write a program to calculate the Fibonacci Numbers.
输入
The first line of the input file contains a single integer T, the number of test cases. The following T lines, each contains an integer n ( 0 <= n <= 45 ), and you are expected to calculate Fn.
输出
Output Fn on a separate line.
样例输入
5035920
样例输出
02534