#include using namespace std; using ll=long long; constexpr int MOD=998244353; void ch(ll &a,ll b){ a=(a+b)%MOD; } int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int N,M,K; cin>>N>>M>>K; vector dp0(1<=K){ ch(dp1[k],dp0[j]); } } } for(int j=0;j<1<