#include <iostream>
using namespace std;

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