Initial release

This commit is contained in:
Francois JUMELLE
2021-05-03 22:32:40 +02:00
commit 20526d93c8
928 changed files with 452368 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
a = 1
b = 4
c = 3
k = 1
n = 0
while k<1000-n:
a = b
b = c+a
c = - 4*c - 3*a - b
n = a+b
k += 1
print(a, ",", b, ",", c)