Pagini recente » Monitorul de evaluare | Diferente pentru concurs-mihai-patrascu-2013 intre reviziile 9 si 10 | Monitorul de evaluare | Profil PAlexandru | Cod sursa (job #2076679)
#include <iostream>
#include <fstream>
#define mod 1999999973
typedef long long ll;
using namespace std;
ifstream in("lgput.in");
ofstream out("lgput.out");
ll exponentiere(ll x, ll n)
{
x = x % mod;
if(n==1) return x;
if(n%2==0) return exponentiere((x * x) % mod, n / 2 ) % mod;
return exponentiere((x * x) % mod, (n - 1) / 2 ) % mod;
}
int main()
{
ll baza, exponent;
in >> baza >> exponent;
out << exponentiere(baza, exponent);
return 0;
}