using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace yukicoderTest { class Program { static void Main(string[] args) { int n = int.Parse(Console.ReadLine()); int m = int.Parse(Console.ReadLine()); double total = n * 10; double total2 = m * 1; if ((total+total2)/2==total2) { Console.WriteLine("Yes"); } else { Console.WriteLine("No"); } } } }