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