def calc(input) a, b = input.split.map(&:to_i) if a < b "YES\n#{ b - a - 1 }" else "NO\n#{ a - b + 1 }" end end # puts calc("1 1") puts calc(gets)