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