n = int(input())
a = list(map(int,input().split()))
u = 0
for i in range(n-1):
    for j in range(i+1, n):
        u = max(u, a[i]^a[j])
print(u)