def main(): a, b, c = map(int, input().split()) if a == 1 or b == 1 or (a & b) & 1: print("NO") else: print("YES") if __name__ == "__main__": main()