from functools import *
import math,fractions
f=dict([[fractions.Fraction(a,b),fractions.Fraction(b,a)] for a in range(1,35) for b in range (a+1,36)])
f0=dict([[t*t,t] for t in f])
f1=dict([[f[t],t] for t in f])
f2=dict([[f[t]*f[t],t] for t in f])
@cache
def check(x,y):
r=[x+y] if x+y in f else []
r+=[f0.get(x*x+y*y,0),f1.get(f[x]+f[y],0),f2.get(f[x]*f[x]+f[y]*f[y],0)]
return [t for t in r if t>0]
s=sum(set([x+y+z for x in f for y in f for z in check(x,y)]))
print(s.numerator+s.denominator)