Factorials.ipynb
47 lines
| 678 B
| text/plain
|
TextLexer
In [1]:
i, j = 1, 1
In [2]:
for m in range(10):
i, j = j, i + j
print(j)