0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 11:45:25 +00:00
OI-codes/problem/P1634/P1634.cpp
2020-10-17 20:41:29 +08:00

14 lines
234 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;
}