递归斐波那契数列 def fun(n): if n==1 or n==2: return 1 else: return fun(n-1)+fun(n-2) x=int(input()) for i in range(1,x+1): print(fun(i),end=' ')