Initial release
This commit is contained in:
10
Herculito 12 Cerbère.py
Normal file
10
Herculito 12 Cerbère.py
Normal 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
|
||||
|
||||
Reference in New Issue
Block a user