#pragma GCC optimize ("O3") #pragma GCC target ("avx") #include "bits/stdc++.h" // define macro "/D__MAI" using namespace std; typedef long long int ll; #define debug(v) {printf("L%d %s > ",__LINE__,#v);cout<<(v)< ",__LINE__,#v);for(auto e:(v)){cout< ",__LINE__,#m);for(int x=0;x<(w);x++){cout<<(m)[x]<<" ";}cout<\n",__LINE__,#m);for(int y=0;y<(h);y++){for(int x=0;x<(w);x++){cout<<(m)[y][x]<<" ";}cout< ostream& operator <<(ostream &o, const pair p) { o << "(" << p.first << ":" << p.second << ")"; return o; } template T& maxset(T& to, const T& val) { return to = max(to, val); } template T& minset(T& to, const T& val) { return to = min(to, val); } void bye(string s, int code = 0) { cout << s << endl; exit(code); } mt19937_64 randdev(8901016); inline ll rand_range(ll l, ll h) { return uniform_int_distribution(l, h)(randdev); } #if defined(_WIN32) || defined(_WIN64) #define getchar_unlocked _getchar_nolock #define putchar_unlocked _putchar_nolock #elif defined(__GNUC__) #else #define getchar_unlocked getchar #define putchar_unlocked putchar #endif namespace { #define isvisiblechar(c) (0x21<=(c)&&(c)<=0x7E) class MaiScanner { public: template void input_integer(T& var) { var = 0; T sign = 1; int cc = getchar_unlocked(); for (; cc<'0' || '9'>(int& var) { input_integer(var); return *this; } inline MaiScanner& operator>>(long long& var) { input_integer(var); return *this; } inline MaiScanner& operator>>(string& var) { int cc = getchar_unlocked(); for (; !isvisiblechar(cc); cc = getchar_unlocked()); for (; isvisiblechar(cc); cc = getchar_unlocked()) var.push_back(cc); return *this; } template void in(IT begin, IT end) { for (auto it = begin; it != end; ++it) *this >> *it; } }; class MaiPrinter { public: template void output_integer(T var) { if (var == 0) { putchar_unlocked('0'); return; } if (var < 0) putchar_unlocked('-'), var = -var; char stack[32]; int stack_p = 0; while (var) stack[stack_p++] = '0' + (var % 10), var /= 10; while (stack_p) putchar_unlocked(stack[--stack_p]); } inline MaiPrinter& operator<<(char c) { putchar_unlocked(c); return *this; } inline MaiPrinter& operator<<(int var) { output_integer(var); return *this; } inline MaiPrinter& operator<<(long long var) { output_integer(var); return *this; } inline MaiPrinter& operator<<(char* str_p) { while (*str_p) putchar_unlocked(*(str_p++)); return *this; } inline MaiPrinter& operator<<(const string& str) { const char* p = str.c_str(); const char* l = p + str.size(); while (p < l) putchar_unlocked(*p++); return *this; } template void join(IT begin, IT end, char sep = '\n') { for (auto it = begin; it != end; ++it) *this << *it << sep; } }; } MaiScanner scanner; MaiPrinter printer; // http://marupeke296.com/TIPS_No17_Bit.html inline int count32bit(unsigned v) { unsigned count = (v & 0x55555555) + ((v >> 1) & 0x55555555); count = (count & 0x33333333) + ((count >> 2) & 0x33333333); count = (count & 0x0f0f0f0f) + ((count >> 4) & 0x0f0f0f0f); count = (count & 0x00ff00ff) + ((count >> 8) & 0x00ff00ff); return (count & 0x0000ffff) + ((count >> 16) & 0x0000ffff); } inline bool MSB32bit(unsigned v, int &out) { if (v == 0) return false; v |= (v >> 1); v |= (v >> 2); v |= (v >> 4); v |= (v >> 8); v |= (v >> 16); out = count32bit(v) - 1; return true; } inline int MSB32bit(unsigned v) { v |= (v >> 1); v |= (v >> 2); v |= (v >> 4); v |= (v >> 8); v |= (v >> 16); return count32bit(v) - 1; } int m, n, kei; int aa[100010]; vector high[30]; vector answer; void print_answer() { bool rm = true; for (auto a : answer) { if (rm) rm = false; else printer << ' '; printer << a; } printer << '\n'; exit(0); } int main() { scanner >> n >> m; scanner.in(aa, aa + n); repeat(i, n) { high[MSB32bit(aa[i])].push_back(aa[i]); } answer.reserve(m); int x = 0; rrepeat(i, 30) { if (high[i].empty()) continue; sort(ALL(high[i]), [](int l, int r) {return MSB32bit(l) > MSB32bit(r); }); if (x & (1 << i)) continue; x ^= high[i].back(); answer.push_back(high[i].back()); high[i].pop_back(); if (--m == 0) print_answer(); } while (m > 0) { bool ok = false; rrepeat(i, min(m, 30)) { if (high[i].empty()) continue; if (ok && x & (1 << i)) continue; x ^= high[i].back(); answer.push_back(high[i].back()); high[i].pop_back(); if (--m == 0) print_answer(); if (!ok) { ok = true; ++i; continue; } ok = true; } if (!ok) break; } while (m > 0) { repeat(i, 30) { while (!high[i].empty()) { answer.push_back(high[i].back()); high[i].pop_back(); if (--m == 0) print_answer(); } } } print_answer(); return 0; }