The Fibonacci sequence is a sequence of numbers denoted as fib(n)
, where each number is the sum of the two preceding numbers, starting from two 1s.
The fib(n)
can be mathematically defined as follows:
In this programming problem, you are required to write a function named fib
that calculates the
You can start with this template code and ensure your code can run correctly within this template:
def fib(n):
# your code here
# Note that the following code is for local testing purposes only. You should leave this part of code unchanged and not submit it to the OJ system.
T = int(input())
for t in range(T):
n = int(input())
print(fib(n))
Please note that you only have to submit the definition of the fib
function to the OJ system. The rest of the code is for your local testing purposes only.
Input Specification
The first line of the input gives the number of test cases,
For each test case, it will consist of a single line that contains an integer
Constraints
Output Specification
For each test case, output a single line containing the value of the
Sample Input
2
2
5
Sample Output
2
8
Hint
recursion
Comments