#include using namespace std; int main() { int h, w, n, k; cin >> h >> w >> n >> k; cout << ((h*w%n ? h*w%n : n) == k ? "YES" : "NO") << endl; }