a,b = map(int,input().split()) if a>=b: print("NO") print(a-b+1) else: print("YES") print(-(a-b+1))