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