#include #include using namespace std; using namespace atcoder; typedef int64_t lint; #define rep(i, n) for(int i=0; i; using vvi = vector>; template inline void vin(vector& v) { rep(i, v.size()) cin >> v.at(i); } template inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } template inline void drop(T x) { cout << x << endl; exit(0); } template void vout(vector v) { rep(i, v.size()) { cout << v.at(i) << ' '; } cout << endl; } constexpr lint LINF = LLONG_MAX/2; using mint = modint998244353; using vm = vector; int main() { lint N, K; cin >> N >> K; vm v(K+1); mint a=0, b=0, c=K, x, y, z; c = c.pow(N); v[0] = c; repx(i, 1, K+1) { a = i; v[i] = c - (K-i)*N*a.pow(N-1) - a.pow(N); } vm w(K+1); repx(i, 1, K+1) { w[i] = v[i-1] - v[i]; } rep(i, K+1) { b += w[i]*i; } std::cout << b.val() << '\n'; }