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

10
Herculito 12 Cerbère.py Normal file
View File

@@ -0,0 +1,10 @@
import math
d = 13979
for o in range(1, d):
n = math.sqrt(d*d-o*o)
if n%1 == 0:
print (o, int(n))
break