n, m, c = map(int, input().split()) if (n * m) % 2 == 1: print("NO") else: print("YES")