#ifndef LOCAL #include using namespace std; #define debug(...) (void(0)) #else #include "algo/debug.h" #endif void solve() { int N; cin >> N; vector A(N); for(int i = 0; i < N; i++) cin >> A[i]; int ans = 0; for(int i = 0; i < N; i++) { for(int j = i + 1; j < N; j++) { ans = max(ans, A[i] ^ A[j]); } } cout << ans << endl; } int main() { std::ios::sync_with_stdio(false); std::cin.tie(nullptr); int tt = 1; // std::cin >> tt; while (tt--) { solve(); } }