Pagini recente » Cod sursa (job #372119) | Cod sursa (job #300364) | Cod sursa (job #1421749) | Cod sursa (job #2008684) | Cod sursa (job #2553545)
#include <bits/stdc++.h>
using namespace std;
ifstream fin("inversmodular.in");
ofstream fout("inversmodular.out");
//inversmodular
void Euclid(int a, int b, int &d, int &x, int &y)
{if(b==0)
{d=a; x=1; y=0;}
else {int x0,y0;
Euclid(b,a%b,d,x0,y0);
x=y0; y=x0-a/b*y0;
}
}
int main()
{int A,N,d,x,y;
fin>>A>>N;
Euclid(A,N,d,x,y);
if(x<0) x+=N;
fout<<x;
return 0;
}