#include #define int long long using namespace std; const int N=1e6+10; const int mod=998244353; int n,m; int Pow(int a,int b=mod-2){ int s=1; while(b){ if(b&1)s=s*a%mod; a=a*a%mod;b>>=1; }return s; } signed main(){ ios::sync_with_stdio(false);cin.tie(0),cout.tie(0); cin>>n>>m; int A=1,B=1; 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<