# Euler Problem 10 - Summation of Primes > The sum of the primes below 10 is 2 + 3 + 5 + 7 = 17. > > Find the sum of all the primes below two million. ## Usage ```bash # compile cargo build --release # run ./target/release/euler-10 ```