Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

피보나치/정수민

From ZeroWiki

Describe 피보나치/정수민 here.

 i,j,k=1,0,0

m=int (raw_input('몇번째?'))

for m in range(m):
    k=i+j
    i=j
    j=k
    print k
   

-_-v