n = int(input()) D = list(map(int,input().split())) x,y = map(int,input().split()) if x+y in D: print(1) else: print(-1)