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) { decimal n = decimal.Parse(Console.ReadLine()); decimal m = decimal.Parse(Console.ReadLine()); decimal total = n * 10; decimal total2 = m * 1; if ((total+total2)/2==total2) { Console.WriteLine("Yes"); } else { Console.WriteLine("No"); } } } }