#include using namespace std; int main() { int a, n; cin >> n; a=2; while (a<=2*n) { cout << a << " "; a=a+2; } return 0; }