index
:
dxdxdt/gists
master
Unnamed repository; edit this file 'description' to name the repository.
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
writeups
/
multiprecision
/
fibo.py
blob: 4bddc240f45a693f6fde12522590eb1f86291345 (
plain
)
1
2
3
4
5
6
7
8
9
#!/bin/env python3
a
=
0
b
=
1
for
i
in
range
(
101
):
c
=
a
+
b
print
(
c
)
b
=
a
a
=
c