S, P, _ = input().split() s, p, _ = input().split() if P == p: print(-1) elif int(P) > int(p): print(S) else: print(s)