// yukicoder: No.85 TVザッピング(1) // 2019.6.22 bal4u #include int main() { int N, M, C; scanf("%d%d%d", &N, &M, &C); if (N == 1 || M == 1) puts(N*M == 2? "YES": "NO"); else puts((N & 1) && (M & 1)? "NO": "YES"); return 0; }