#include #define int long long #define x first #define y second #define pi acos(-1) using namespace std; using LL = long long; using ULL = unsigned long long; typedef pair PII; const int N = 1e6 + 10, M = 5010, mod = 1e9 + 7; void solve() { int n; cin >> n; vector a(n + 1); int p = 0; unordered_map mp; int p2 = 0, p3 = 0; for(int i = 1; i <= n; i++){ cin >> a[i]; if(a[i] == 0){ p = i; } if(mp[a[i]] != 0){ p2 = mp[a[i]]; p3 = i; } mp[a[i]] = i; } if(p != 0){ cout << 1 << "\n"; cout << p << "\n"; return; } if(p2 != 0){ cout << 2 << "\n"; cout << p2 << " " << p3 << "\n"; return; } vector d(61); set s; auto add = [&](int x, int y)->void{ for(int i = 59; i >= 0; i--){ if((x >> i) & 1){ if(d[i].x) x ^= d[i].x; else{ d[i].x = x; d[i].y = y; s.insert(y); break; } } } return; }; for(int i = 1; i <= n; i++){ add(a[i], i); } int cnt = 0; for(int i = 0; i < 60; i++){ if(d[i].x != 0) cnt++; } if(cnt == n){ cout << -1 << "\n"; }else if(cnt == 1){ cout << 1 << "\n"; cout << a[1] << "\n"; }else{ int num = -1; vector ans; for(int i = 1; i <= n; i++){ if(s.count(i)) continue; else{ num = a[i]; ans.push_back(i); break; } } for(int i = 59; i >= 0; i--){ if((num >> i) & 1){ ans.push_back(d[i].y); num ^= d[i].x; } } cout << ans.size() << "\n"; for(auto c: ans){ cout << c << " "; } cout << "\n"; } } signed main() { ios::sync_with_stdio(0),cin.tie(0),cout.tie(0); int T = 1; //cin >> T; while(T--) { solve(); } }