RE: Programming contest 4
Hello! Here's my solution in python:
for i in range(1, 1000): if i % 2 == 1: print(i)
RE: Programming contest 4