#include <iostream>
using namespace std;
int A[100];

int main() {
	for(int i=0; i<100; i++)
	A[i]=i;
	for(int i=1; i<100; i=i+2)
	cout<<A[i]<<endl;
	
	return 0;
}