n=int(input()) a=list(map(int,input().split())) for i in range(61): x=pow(2,i) f=True for j in a: if j+x!=j^x: f=False break if f: print(x) exit()