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