inp=input().split() m=int(inp[0]) w=int(inp[1]) if (m+1)!=w: print("NO\n"+str(m+1-w)) else: print("YES\n0")