a = input().split() b = input().split() if a[1] == b[1]: print(-1) elif max(a[1], b[1]) == a[1]: print(a[0]) else: print(b[0])