#include #include #include #include using namespace std; typedef long long ll; typedef pair P; typedef pair T; long long int INF = 2e18; const ll fact_table = 1200008; double Pi = 3.1415926535897932384626; priority_queue pql; priority_queue

pqp; priority_queue

bag; //big priority queue priority_queue ,greater > pqls; priority_queue ,greater

> pqps; //small priority queue //top pop ll dx[8]={1,0,-1,0,1,1,-1,-1}; ll dy[8]={0,1,0,-1,1,-1,-1,1}; char dir[] = "DRUL"; //↓,→,↑,← #define endl "\n" #ifdef ENJAPMA #undef endl #endif #define p(x) cout<=1; i--){ rfact[i-1] = rfact[i] * i; rfact[i-1] %= mod; } return;} ll c3(ll n,ll r){ return (((fact[n] * rfact[r]) % mod ) * rfact[n-r]) % mod;} ll mygcd(ll a, ll b){ if(b > a)swap(a, b); if(b == 0 || a == b){ return a; }else{ return mygcd(b, a % b); } } bool multicase = false; ll n,m,num,a,b,c,d,e,h,q; ll w, k; ll dp[100005]; void solve(){ cin >> n >> m; c3_init(); for(ll i=1;i<=m;i++){ dp[i] = c3(m, i) * mypow(i, n, mod); dp[i] %= mod; dp[i] += mod - dp[i-1]; dp[i] %= mod; } p(dp[m]); return; } int main(){ // init(); ios::sync_with_stdio(false); cin.tie(nullptr); ll q, testcase = 1; if(multicase){ cin >> q; }else{ q = 1; } while(q--){ // pu("Case ");pu("#");pu(testcase);pu(": "); solve(); testcase++; } // solve(); return 0; }