using System; namespace yukicoder { class Program { static void Main(string[] args) { int a= int.Parse(Console.ReadLine()); int b = int.Parse(Console.ReadLine()); a *= 100; b *= 10; if (a % 2 == 0 && b % 2 == 0) { Console.WriteLine("Yes"); } else { Console.WriteLine("No"); } } } }