葛竹轩 num_1=1 num_2=1 n=int(input()) for i in range(3,n+1): num_next=num_1+num_2 temp=num_1 num_1=num_next num_2=temp print(num_next)