#include void main(void){ int a,b; scanf("%d %d" , &a,&b); if( ( a + b ) % 2 == 0){ printf("Yes"); }else{ printf("No"); }; }