N, M, C = map(int, input().split()) #N, M いずれか偶数ならOK if (N*M)%2 == 0: print('YES') else: print('NO')