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