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