#include #include #include #include using namespace std; using ll=long long; using mint=atcoder::modint998244353; #define all(v) v.begin(),v.end() #define rall(v) v.rbegin(),v.rend() template bool chmax(T &a, T b){if (a < b){a = b;return true;} else return false;} template bool chmin(T &a, T b){if (a > b){a = b;return true;} else return false;} mint p(int H,int A,int i){ int l=max(i-A+1,1),r=min(i,H-A+1); return(mint)max(0,r-l+1)/(H-A+1); } int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); ll H,W,A,B; cin>>H>>W>>A>>B; mint ans=0,p1=0,p2=0; for(int i=1;i<=H;i++){ p1+=p(H,A,i)*p(H,A,i); } for(int j=1;j<=W;j++){ p2+=p(W,B,j)*p(W,B,j); } ans=2*A*B-p1*p2; cout<