2 lines
60 B
Python
2 lines
60 B
Python
|
sum([x for x in range(1,1000) if x % 5 == 0 or x % 3 == 0])
|