#include #define int long long using namespace std; const int mod=998244353; int n,m,a,b=1; int qpow(int a,int b){ int t=1; while(b){ if(b&1)t=t*a%mod; b/=2,a=a*a%mod; } return t; } signed main(){ ios::sync_with_stdio(0),cin.tie(0),cout.tie(0); cin>>n>>m,a=n; for(int i=m;i<=2*n+m;i++)a=a*i%mod; for(int i=1;i<=2*n+1;i++)b=b*i%mod; cout<