#include <iostream>
using namespace std;

int main() {
	// your code goes here
    for (int i=1; i<=20; i+=2)
    {
       
        cout << i << " ";
    }
	return 0;
}