a=[] b=[] a=input() b=input() a=a.split() b=b.split() a.sort() b.sort() if a == b: print("No") else: print("Yes")