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,9 @@
x = 999
y = 312
z = 663
while 10*x>y:
x = (y * z) % 10000
y = (3 * z) % 10000
z = (7 * z) % 10000
print("{},{},{}".format(x, y, z))