SA,PA,XA = input().split(' ') SB,PB,XB = input().split(' ') ans = [SA,SB,'-1'][0 if int(PA) > int(PB) else 1 if int(PA) < int(PB) else 2] print(ans)