import math
N=5*10**9
r=0
S=10**8
for i in range(N/S+1):
L=i*S
U=(i+1)*S
counters=[0]*(S/2)
for x in range(int(math.sqrt(N))+1):
y=max((int(math.sqrt(L-x*x))&~1)+(x&1)-4,x+2) if x*x < L else x+2
z=x*x+y*y
while y <=int(math.sqrt(N-x*x)) and z < U:
if z>=L:
counters[(z-L)/2]+=1
y+=2
z=x*x+y*y
r+=sum(c*(c-1)*(c-2)/6 for c in counters)
print i*2,"percent completed"
print(r)