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