自己手写 pow(a,b)pow(a,b)pow(a,b) 函数。
#define ll long long ll powt(ll a,ll b,ll ans=1){ while(b--) ans*=a;return ans; }