You are given an integer n.
Your task is to calculate the n-th Fibonacci number, denoted F(n).
Remember that:
F(n) = F(n - 1) + F(n - 2).F(0) = 0 and F(1) = 1.Return the n-th Fibonacci number.
2
1
F(2) = F(1) + F(0) = 1 + 0 = 1.
3
2
F(3) = F(2) + F(1) = 1 + 1 = 2.
4
3
F(4) = F(3) + F(2) = 2 + 1 = 3.
2
1