#include using namespace std; void fast_io() { ios::sync_with_stdio(false); std::cin.tie(nullptr); } int main() { fast_io(); int n; cin >> n; vector a(n); for (int i = 0; i < n; i++) { cin >> a[i]; } vector grundy(64); for (int i = 1; i < 64; i++) { set st; for (int j = 0; j < 64; j++) { if (i & (1LL << j)) { st.insert(grundy[j]); } } while (st.count(grundy[i])) { grundy[i]++; } } int ans = 0; for (int i = 0; i < n; i++) { set st; for (int j = 0; j < 64; j++) { if (a[i] & (1LL << j)) { st.insert(grundy[j]); } } int tmp = 0; while (st.count(tmp)) { tmp++; } ans ^= tmp; } cout << (ans ? 1 : 2) << endl; }