#include using namespace std; using ll = long long; int main() { int n; cin >> n; vector a(n); for(int i = 0; i < n; i++)cin >> a[i]; int res = 0; for(int i = 0; i < n; i++) { for(int j = i + 1; j < n; j++) { res = max(res, a[i] ^ a[j]); } } cout << res << endl; }