666
chl2023
2023-12-16 9:27:21
#include <bits/stdc++.h>
#define endl "\n"
using namespace std;
long long a[1001][1001],f[1001][1001];
int main(){
ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);
int n,m,c,b;
cin>>n>>m>>c>>b;
a[2][2]=1;
c+=2;
b+=2;
for(int i=1;i<=1;i++){
f[c][b]=114514;
f[c-2][b-1]=114514;
f[c-1][b-2]=114514;
f[c+1][b-2]=114514;
f[c+2][b-1]=114514;
f[c-2][b+1]=114514;
f[c-1][b+2]=114514;
f[c+1][b+2]=114514;
f[c+2][b+1]=114514;
}
for(int i=2;i<=n+2;i++){
for(int j=2;j<=m+2;j++){
if(i==2&&j==2||f[i][j]==114514) continue;
if(f[i-1][j]!=114514) a[i][j]+=a[i-1][j];
if(f[i][j-1]!=114514) a[i][j]+=a[i][j-1];
}
}
cout<<a[n+2][m+2];
return 0;
}