def main(): i = input() lst = i.split(' ') N,M = map(int,lst) if (100*N+1000*M)%2==0: print('Yes') if __name__ == '__main__': main()