a=list(map(int,input().split())) d=list(map(int,input().split())) a.sort() d.sort() if a is d: print("Yes") print(2) else: print("No")