This website requires JavaScript.
Explore
Help
Sign In
neale
/
moth
mirror of
https://github.com/dirtbags/moth.git
Watch
1
Star
0
Fork
You've already forked moth
0
Code
Issues
Projects
Releases
Wiki
Activity
b135069851
moth
/
example-puzzles
/
counting
/
2
/
puzzle.md
195 B
Raw
Blame
History
authors
debug
answers
neale
summary
counting by twos
16
2 4 6 8 10 12 14 _
Here is a Python program that might help:
for
i
in
range
(
2
,
20
,
2
):
print
(
i
)