summaryrefslogtreecommitdiff
path: root/001.py
blob: dd1cbc61c42959d25a7926d4b7518dc15fe07cee (plain)
1
2
3
4
5
6
7
result = 0

for i in range(1,1000):
	if i % 3 == 0 or i % 5 == 0:
		result += i

print result