Sa,Pa,Xa = input().split() Sb,Pb,Xb = input().split() Pa = int(Pa) Pb = int(Pb) if Pa == Pb: print(-1) elif Pa > Pb: print(Sa) else: print(Sb)