#include <iostream> using namespace std; int main() { int x,j=0; cin >> x; for (int i = x; j < 6; i ++ ) { if (i % 2) { cout << i << endl; j ++ ; } } return 0; }