欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Mathematical Practice

程序员文章站 2022-06-18 13:58:26
...

Mathematical Practice
Mathematical Practice

#include<bits/stdc++.h>
using namespace std;
#define ll long long
const ll mod=998244353;
 ll n,m;
ll pow(ll a,ll b)
{
    if(b==0) return 1;
    if(b%2==1) return a*pow(a,b-1)%mod;
    else
    {
        ll mul=pow(a,b/2);
        return mul*mul%mod;

    }
}
int main()
{
    ios::sync_with_stdio(false);


    cin>>n>>m;
    cout<<pow(m+1,n)<<endl;
}

相关标签: 思路