There are another kind of Fibonacci numbers: F(0) = 0, F(1) = 1, F(n) = F(n-1) + F(n-2) (n>=2).
Input consists of a sequence of lines, each containing an integer n. (0 <= n < = 40).
Print F(n).
2 5
1 5