B2062 题解 Ryan_Yu · 2021-07-03 22:22:20 · 题解 `pow`函数是用来求 $x$ 的 $y$ 次方的值,刚好与题意相符。 ```cpp #include<bits/stdc++.h> using namespace std; long long a,b; int main() { cin>>a>>b; cout<<pow(a,b); return 0; } ```