Skip to content

Commit 28cd22e

Browse files
committed
Solve Odd Numbers in python
1 parent 60c608c commit 28cd22e

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

solutions/beecrowd/1067/1067.py

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import sys
2+
3+
for line in sys.stdin:
4+
for i in range(1, int(line) + 1, 2):
5+
print(i)

0 commit comments

Comments
 (0)