Найдите сумму всех кратных 3 или 5 ниже 1000 Python
nums = [3, 5]
result = 0
for i in range(0,1000):
if i%3 == 0 or i%5 == 0:
result += i
print(result)
Vivacious Vole