Perhaps, IMO, the best way is:
`#!python fn0=0 fn1=1 m=10000 i=0 while(i<m): fn=fn1+fn0 fn0=fn1 fn1=fn print(i+2,fn) i=i+1`