import sympy
target=10**8
d=[0]*target
n=2
while n < target:
for i in range(n*n,target,n):
d[i]=d[i]+1
n=n+1
while n < target and d[n]>0:
n=n+1
tick=10**6
res=5
for p in range(10,target):
if d[p]==0 and p%5 in (1,4):
a=sympy.mod_inverse(2,p)
for x in sympy.sqrt_mod(5,p,all_roots=True):
g=(a*(x+1))%p
if sympy.is_primitive_root(g,p):
res+=p
break
if p%tick==0:
print(p//tick,"percent completed, current sum:",res)
print(res)