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