import math
m,n=10**9,10**8
bound=10**4
res=0
tick=100
for a in range(1,bound+1):
b=a+1
while a*b<=n:
if math.gcd(a,b)==1:
c=(m//a//b)*(n//a//b)
res+=c if (a%2==b%2) else (c+1)//2
b+=1
if a < tick:
print(f"{a/tick:.2f} percent completed")
if a%tick==0:
print(a//tick,"percent completed")
print(4*m*n+8*res)