Pagini recente » Borderou de evaluare (job #3332257) | Cod sursa (job #2234125) | Diferente pentru utilizator/eclipse intre reviziile 14 si 20 | Cod sursa (job #1110327) | 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;
}