Problem 10 08 February 2002 The sum of the primes below 10 is 2 + 3 + 5 + 7 = 17. Find the sum of all the primes below two million. Answer: 142913828922 C# using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Euler { class Program { static void Main(string[] args) { const long pmax = 2000000; bool[] isPrime = new bool[pmax]; for (long i = 2; i