A, B = map(int, input().split()) if A >= B: print("NO") else: print("YES") print(max(0, A + 1 - B))