Untitled

 avatar
Boss
python
2 years ago
82 B
0
Indexable
Never
a=1
b=1
print(a)
print(b)
for i in range(2,100):
    a,b=b,a+b
    print(b)