#9528. 斐波那契数列

斐波那契数列

Description

用递归函数输出斐波那契数列第n项。0,1,1,2,3,5,8,13……

Input Format

一个正整数n,表示第n项。

Output Format

第n项是多少。

3

1