mirror of
https://github.com/correl/euler.git
synced 2024-11-23 19:19:53 +00:00
6 lines
110 B
Python
6 lines
110 B
Python
total = 0
|
|
for x in range(1000):
|
|
if (0 == x % 3) or (0 == x % 5):
|
|
total = total + x
|
|
|
|
print 'Answer', total
|