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