#include #include using namespace std; using ll = long long; const ll MOD = 998244353; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int n, m; if (!(cin >> n >> m)) return 0; vector f = {1, 1}; for (int iter = 0; iter < n; ++iter) { vector fy = f; fy[0] = 0; f = atcoder::convolution(f, fy); f[0] = 1; } ll ans = f[(1<