#!/usr/bin/env python3 h, w, _ = map(int, input().split()) print(['YES', 'NO'][h % 2 == w % 2 == 1])