#include using namespace std; #define int long long const int p=998244353; int po(int a,int b) {if(b==0) return 1; if(b==1) return a; if(b%2==0) {int u=po(a,b/2);return (u*u)%p;} else {int u=po(a,b-1);return (a*u)%p;}} int inv(int x) {return po(x,p-2);} const int maxn=4e5+5; int fact[maxn];int invf[maxn]; int c1(int n1,int n2,int n3) { int ans=fact[n1+n2+n3];ans*=invf[n1];ans%=p;ans*=invf[n2];ans%=p;ans*=invf[n3];ans%=p;return ans; } array po1(array v,int n) { if(n==1) return v; if(n%2==0) { array u=po1(v,n/2); array res={0,0,0}; for(int i=0;i<3;++i) {for(int j=0;j<3;++j) { res[(i+j)%3]+=u[i]*u[j];res[(i+j)%3]%=p; }} return res; } else { array u=po1(v,n-1); array res={0,0,0}; for(int i=0;i<3;++i) {for(int j=0;j<3;++j) { res[(i+j)%3]+=u[i]*v[j];res[(i+j)%3]%=p; }} return res; } } int32_t main() { ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0); fact[0]=1;for(int i=1;i>n>>m; int res=0; for(int a=0;a<=m;++a) { for(int b=0;a+b<=m;++b) { int c=m-a-b; int h=c1(a,b,c); array v={a,b,c}; array u=po1(v,n); res+=h*(2*u[(333333-2*b-c)%3]-u[(333333-2*b-c+1)%3]-u[(333333-2*b-c+2)%3]);res%=p; } } for(int i=0;i