#include using namespace std; int main(){ int N; cin >> N; int t = 2; int m; if(N%2 == 0) m = N/2; else m = N/2+1; if(N == 1) cout << 1 << endl; else if(N == 2) cout << 1 << endl; else if(N == 3) cout << -1 << endl; else if(N == 4) cout << "2 4" << endl; else if(N == 5) cout << -1 << endl; else{ cout << "3 6"; for(int i=2;i<=N;i+=2){ if(i == 6) continue; cout << " " << i; t++; if(t == m) break; } cout << endl; } }