#include using namespace std; typedef long long ll; typedef vector vi; typedef vector vll; typedef vector vvi; typedef pair P; #define rep(i, n) for (int i = 0; i < (int)(n); i++) #define print(x) cout << x << endl #define all(v) (v).begin(),(v).end() #define YN(ok) print((ok ? "YES" : "NO")) #define yn(ok) print((ok ? "Yes" : "No")) #define decimal(n) setprecision(25) << n #define Arrays_toString(v) rep(o,(v).size()){cout<> h >> w; int a, b, c, d; cin >> a >> b >> c >> d; int sum1 = a+b; int sum2 = c+d; yn(sum1 % 2 != sum2 % 2); }