using namespace std; #include #define BEGIN ios_base::sync_with_stdio(0);cin.tie(0); #define END return EXIT_SUCCESS; #define FOR(I,A,B) for(int (I)=(A);(I)<(B);++(I)) #define ALL(C) (C).begin(),(C).end() typedef unsigned long long ull; void solve() { ull H,W,N,K;cin>>H>>W>>N>>K; ull M=H*W; ull T=M%N; ull V=T?T:N; cout<<(V==K?"YES":"NO")<