Changes to be committed:
new file: problem_1.py
new file: problem_2.py
new file: problem_3.py
14 lines
135 B
Python
14 lines
135 B
Python
import math
|
|
|
|
|
|
sum = 0
|
|
|
|
|
|
for x in range(0, 1000):
|
|
if x % 3 == 0:
|
|
sum += x
|
|
elif x % 5 == 0:
|
|
sum += x
|
|
|
|
print(sum)
|