diff --git a/ProjectEuler/Problem10.m b/ProjectEuler/Problem10.m new file mode 100644 index 0000000..08286cb --- /dev/null +++ b/ProjectEuler/Problem10.m @@ -0,0 +1,6 @@ +%ProjectEuler/Problem10.m +%This is a script to answer Problem 10 for Project Euler +%Find the sum of all the primes below two million. + +%Print the answer +sum(primes(2000000))