N, M, C = map(int, input().split()) if N * M % 2 < 1: print("YES") else: print("NO")