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