#include <stdio.h>
#include <stdlib.h>

int main(void){
int i=1;
for(i = 1 ; i < 20 ; i+=2)
{
printf("%d ", i);
}

return 0;
}