na, pa, ja = input().split() nb, pb, jb = input().split() if len(pa) > len(pb): print(na) elif len(pa) < len(pb): print(nb) else: print(-1)