示例#1
0
 long SumOfProperDivisors(long i)
 {
     return(Factors.SumOfProperDivisors(i));
 }
 public static long Solution()
 {
     return(Factors.PrimeNumberBelow(2000000).Sum());
 }