mirror of
https://github.com/correl/euler.git
synced 2024-11-23 19:19:53 +00:00
6 lines
116 B
Python
6 lines
116 B
Python
|
from e007 import primes;
|
||
|
|
||
|
print 'Fetching all primes for n < 2,000,000'
|
||
|
p = primes(0, 2000000)
|
||
|
print 'Sum:', sum(p)
|