#include #include #define print(x) cout << x << endl; using namespace std; int main(void){ /*print("Yes")だけでいい*/ cin.tie(0); ios::sync_with_stdio(false); int N, M; cin >> N >> M; string ans = "Yes"; int k; k = N + M/10; if(k%2 == 1){ ans = "No"; } print(ans); }