A, B = gets.split.map(&:to_i) ans = B-A-1 if ans < 0 puts 'NO' else puts 'YES' end puts ans.abs