def main(): A, B = map(int, input().split()) if A % 2 and B % 2: ans = 'No' else: ans = 'Yes' print(ans) main()