python-euler/solutions/001/multiplesof3or5.py

7 lines
148 B
Python

sum = 0
for i in range(1000):
if (i % 3) == 0 or (i % 5) == 0:
sum += i
print("The sum of all the multiples of 3 or 5 is: %d" % (sum))