class Program { static void Main(string[] args) { decimal hundred = decimal.Parse(Console.ReadLine()!); decimal ten = decimal.Parse(Console.ReadLine()!); if (((hundred * 100) + (ten * 10)) % 2 == 0) { Console.WriteLine("Yes"); } else { Console.WriteLine("No"); } } }