Initial commit

This commit is contained in:
t3xhno 2024-02-06 14:16:08 +01:00
commit b8d3e78dbd

6
problem1.py Executable file
View File

@ -0,0 +1,6 @@
sum = 0
for i in range(1, 1000):
if i % 3 == 0 or i % 5 == 0: sum += i
print(sum)