Pagini recente » Istoria paginii runda/oni15_z2/clasament | Cod sursa (job #667898) | Istoria paginii runda/simulare_de_oni_1/clasament | Istoria paginii runda/simulare-cartita-04 | Cod sursa (job #2439795)
#include<fstream>
using namespace std;
#define modulo 1999999973
/*int main()
{
ifstream fin("lgput.in");
ofstream fout("lgput.out");
int long n, p, r;
fin >> n >> p;
r = 1;
while (p)
{
if (p % 2)
r = (1LL * r * n) % modulo;
n = (1LL * n * n) % modulo;
p = p / 2;
}
fout << r;
return 0;
}*/
int main()
{
return 0;
}