Pagini recente » Cod sursa (job #1971407) | Cod sursa (job #323336) | Cod sursa (job #2310105) | Cod sursa (job #915671) | Cod sursa (job #1800244)
#include <bits/stdc++.h>
using namespace std;
const long long MOD = 1999999973;
ifstream fin("lgput.in");
ofstream fout("lgout.out");
long long pow(long long x, long long n) {
int y = 1;
while (x > 1) {
if (n % 2 == 0) {
x *= x; x %= MOD; n /= 2;
} else {
y *= x; x *= x; x %= MOD; n = (n - 1) / 2;
}
}
return (x * y) % MOD;
}
int main() {
int N, P; fin >> N >> P;
fout << pow(N, P) << endl;
}