Pagini recente » Diferente pentru problema/orient intre reviziile 9 si 10 | Cod sursa (job #1265300) | Cod sursa (job #2089668) | Cod sursa (job #2567492) | Cod sursa (job #1166726)
#include<iostream>
#include<fstream>
using namespace std;
ifstream fin("lgput.in");
ofstream fout("lgput.out");
const int MOD = 1999999973;
int n, p, rez;
int main() {
fin >> n >> p;
rez = 1;
while(p != 0) {
if(p%2) {
rez = (rez * n) % MOD;
p--;
}
n = (n * n) % MOD;
p /= 2;
}
fout << rez;
fin.close();
fout.close();
return 0;
}