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