This website requires JavaScript.
Explore
Help
Sign In
dan
/
challenges
Watch
1
Star
0
Fork
You've already forked challenges
0
Code
Issues
Pull Requests
Releases
Wiki
Activity
bb6dc490ca
challenges
/
e1
/
e1.py
8 lines
103 B
Python
Executable File
Raw
Blame
History
#!/usr/bin/python
sum
=
0
for
i
in
range
(
2
,
1000
)
:
if
i
%
3
==
0
or
i
%
5
==
0
:
sum
+
=
i
print
sum
Reference in New Issue
View Git Blame
Copy Permalink