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