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