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