#include <stdio.h>

int main(int c,char **v){
	int i=0;
	while(i<=10){
		i++;
		if(i%2==0){continue;}
		printf("%d\n",i);
	}
}


