#!python # -*- coding: utf-8 -*- A, B = map(int, input().split()) if A % 2 == 0 or B % 2 == 0: print('Yes') else: print('No')