Pagini recente » Cod sursa (job #3293897) | Cod sursa (job #2901702) | Cod sursa (job #552066) | Cod sursa (job #1606895) | Cod sursa (job #1745182)
#include <fstream>
using namespace std;
ifstream fin("inversmodular.in");
ofstream fout("inversmodular.out");
void euclid(int a, int b, int* d, int* x, int* y);
int main()
{
int a, n, x, y, d;
fin >> a >> n;
euclid(a, n, &d, &x, &y);
fout << x << '\n';
fin.close();
fout.close();
return 0;
}
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;
}
}