沙文俊 求数列中的一位 输入要求的数的数位(在数列中的数位) a=int(input('')) z=1 x=1 c=0 for i in range(3,a+1): c=z+x temp=z z=c x=temp print(z)