0
0
已采纳
汪宇航
新手启示者
新手启示者
0
汪宇航
新手启示者
新手启示者
int n,m,a,b;
cin>>n>>m;
a=n-1,b=m-1;
long long s=1;
for(int i=1;i<=b;i++){
s*=(n-1);
}
cout<<s;
0