#include #include using namespace std; int main() { int N, M; cin >> N >> M; if ((N + M / 10) % 2 == 0) cout << "Yes" << endl; else cout << "No" << endl; return 0; }