#include using namespace std; int main() { int N, M, C; cin >> N >> M >> C; cout << (!(N % 2 && M % 2) ? "YES" : "NO") << endl; return 0; }