Pagini recente » Cod sursa (job #1342467) | Cod sursa (job #2739624) | Cod sursa (job #2563269) | Cod sursa (job #2066585) | Cod sursa (job #2673694)
#include <bits/stdc++.h>
using namespace std;
ifstream fin("inversmodular.in");
ofstream fout("inversmodular.out");
void cmmdc(int a, int b, long long &x, long long &y)
{
if(b == 0)
{
x = 1;
y = 0;
}
else
{
int x0,y0;
cmmdc(b, a % b, x0, y0);
x = y0;
y = x0 - a / b * y0;
}
}
int main()
{
int a,n;
long long x,y;
fin >> a >> n;
cmmdc(a,n,x,y);
fout << x;
return 0;
}