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