0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 06:25:24 +00:00
OI-codes/Luogu/P1634/P1634.cpp

14 lines
238 B
C++

#include <bits/stdc++.h>
using namespace std;
int main() {
unsigned long long x, n, ans = 1;
cin >> x >> n;
for (unsigned long long i = 0; i < n; i++) {
ans += ans * x;
}
cout << ans << endl;
return 0;
}