1
1
project-euler/1.py

8 lines
95 B
Python

sum = 0
for i in range(1000):
if (i % 3 == 0 or i % 5 == 0):
sum += i
print(sum)