N, M, C = map(int, input().split()) if 1 in (N, M): if 2 in (N, M): print('Yes') else: print('No') elif N % 2 == 0 or M % 2 == 0: print('Yes') else: print('No')