a,b=[int(i)for i in input().split()] if a+1<=b: print("YES") print(b-a-1) else: print("NO") if a>=b: print(a-b+1) else: print(b-a-1)