After tackling number 9 yesterday , I thought I'd do #10 real quick since it seemend pretty easy. Calculate the sum of all the primes below two million. The code for the algorithm was a simple 2 lines: var range = GeneratePrimes().TakeWhile(x => x...