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