#define _USE_MATH_DEFINES #include //cin, cout #include //vector #include //sort,min,max,count #include //string,getline, to_string #include //abs(int) #include //swap, pair #include //deque #include //INT_MAX #include //bitset #include //sqrt, ceil. M_PI, pow, sin #include //fixed #include //setprecision #include //stringstream #include //gcd, assumlate #include //randam_device #include //numeric_limits using namespace std; constexpr long long int D_MOD = 1000000007; int main() { long long int H, W, N, K; cin >> H >> W >> N >> K; long long int HW = H * W; if (N < HW) { if (HW % N == 0) { if (N == K) { cout << "YES" << endl; return 0; } if (HW % N == K) { cout << "YES" << endl; return 0; } } } else if (N == HW) { if (N == K) { cout << "YES" << endl; return 0; } } else { if (HW == K) { cout << "YES" << endl; return 0; } } cout << "NO" << endl; return 0; }