Project Euler 10 - Summation of Primes

Official link: https://projecteuler.net/problem=10

Thought Process

Using my prime generator function, this problem is again trivial. Simply generate all primes < 2,000,000 and sum them

Interactive Code

Input an integer (yourinput)

Code will output the sum of all primes < yourinput