N=int(input()) A=set() for _ in range(N): x,y=map(int,input().split()) # print(x,y) if y-x>0:A.add(y-x) if len(A)==1:print(*A) else:print(-1)