#include using namespace std; int N, M, C; int main(){ scanf("%d%d%d", &N, &M, &C); if((N*M)%2 == 0){ puts("YES"); }else{ puts("NO"); } return 0; }