SA, PA, XA = input().split() SB, PB, XB = input().split() if PA == PB: print(-1) elif int(PA) > int(PB): print(SA) else: print(SB)