#pragma GCC optimize("Ofast") #include using namespace std; typedef long long int ll; typedef unsigned long long ull; mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count()); ll myRand(ll B) { return (ull)rng() % B; } int main(){ cin.tie(nullptr); ios::sync_with_stdio(false); int n; cin >> n; if(n==3 or n==5){ printf("-1\n"); return 0; } for(int i=2;i<=n;i+=2){ cout << i << " "; } if(n==1)cout << 1; else if(n%2){ int u=n-1; while(u%2==0)u/=2; cout << u; } cout << endl; }