You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
644 B

2 years ago
#include <bits/stdc++.h>
using namespace std;
typedef long long LL;
/*
2
k>3 k1100 >1011
10.
*/
LL get(int a, int b) {
LL res = 1;
while (b--) res *= a;
return res;
}
int main() {
int n, k;
cin >> k >> n;
LL res = 0;
for (int i = 0; i < 20; i++)
if (n >> i & 1)
res += get(k, i);
cout << res << endl;
return 0;
}