Skip to content
This repository was archived by the owner on Sep 20, 2024. It is now read-only.

Commit 84487f3

Browse files
authored
Create 1_sum
1 parent e3039eb commit 84487f3

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

1_sum

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
sum=0
2+
for m in range(1,500):
3+
if(m%5==0 and m%7!=0):
4+
sum=sum+m
5+
print (sum)

0 commit comments

Comments
 (0)