#include using namespace std; int main() { int N; cin >> N; if (N%2==0) { for (int i=1; i<=N/2; i++) { cout << 2*i << " "; } cout<