79303929

Date: 2024-12-23 18:36:37
Score: 1.5
Natty:
Report link

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`
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: natan