Pagini recente » Cod sursa (job #1761270) | Cod sursa (job #2019651) | Cod sursa (job #1653400) | Cod sursa (job #1222864) | Cod sursa (job #3312326)
/******************************************************************************
Online C++ Compiler.
Code, Compile, Run and Debug C++ program online.
Write your code in this editor and press "Run" button to compile and execute it.
*******************************************************************************/
#include <iostream>
#include <fstream>
using namespace std;
int main()
{ ifstream fin ("euclid2.in");
ofstream fout( "euclid2.out");
int t;
fin>>t;
for ( int i=0; i<t; i++)
{
long long a, b;
fin >> a >> b;
while (b )
{ int r= a % b;
a = b;
b = r;
}
fout << a << endl;
}
return 0;
}