ss = input().split() a = int(ss[0]) + 1 b = int(ss[1]) if(a <= b): print("YES") print(b - a) else: print("NO") print(a - b)