#include using namespace std; #define _p(...) (void)printf(__VA_ARGS__) #define forr(x,arr) for(auto&& x:arr) #define _overload3(_1,_2,_3,name,...) name #define _rep2(i,n) _rep3(i,0,n) #define _rep3(i,a,b) for(int i=int(a);i=int(a);i--) #define rrep(...) _overload3(__VA_ARGS__,_rrep3,_rrep2,)(__VA_ARGS__) #define ALL(x) (x).begin(), (x).end() #define BIT(n) (1LL<<(n)) #define SZ(x) ((int)(x).size()) #define fst first #define snd second typedef vector vi;typedef vector vvi;typedef pair pii;typedef vector vpii; typedef long long ll; void Main() { ll H, W, N, K; cin >> H >> W >> N >> K; ll loose = (H-1) + (W-1) + 1; //cerr<<"loose: "< N) loose %= N; puts(loose == K || (loose == 0 && K == N)? "YES" : "NO"); } int main() { cin.tie(0); ios::sync_with_stdio(false); Main(); return 0; }