#include using namespace std; #define rep(i,n) for(int i=0;i=0;--i) #define debug(output) if(debugFlag)cout<<#output<<"= "< P; const bool debugFlag=true; const lint linf=1.1e18;const int inf=1.01e9; constexpr int MOD=1000000007; templatebool chmax(T &a, const T &b) { if(a < b){ a = b; return 1; } return 0; } templatebool chmin(T &a, const T &b) { if(a > b){ a = b; return 1; } return 0; } #include using namespace atcoder; using mint = modint998244353; template struct Binom{ long long n; bool flag=false; vector kaijo,inv_kaijo; Binom(int N){ n=N; kaijo.push_back(1); for(long long i=1;i<=n;i++){ kaijo.push_back((kaijo[i-1]*i)); } } void invList(){ inv_kaijo.push_back(1); flag=true; for(int i=1;i<=n;++i){ inv_kaijo.push_back(1/kaijo[i]); } } T binom(long long N,long long K){ if(N<0||K<0)return 0; if(N>a>>b; Binom binom(a+b+10); cout<