a,b,c=input().split() d,e,f=input().split() if int(b)>int(e): print(a) elif int(e)>int(b): print(d) else: print(-1)