n = gets.to_i m = gets.to_i if n % 2 == 1 && m >= 10 n += 1 m -= 10 end if n % 2 == 0 && m % 2 == 0 puts 'Yes' else puts 'No' end