Pagini recente » Istoria paginii utilizator/hadarbianca | Cod sursa (job #72414) | Cod sursa (job #1352992) | Profil M@2Te4i | Cod sursa (job #2076680)
#include <iostream>
#include <fstream>
#define mod 1999999973
typedef long long ll;
using namespace std;
ifstream in("lgput.in");
ofstream out("lgput.out");
int 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 (x * exponentiere(x , n - 1 )) % mod;
}
int main()
{
ll baza, exponent;
in >> baza >> exponent;
out << exponentiere(baza, exponent);
return 0;
}