Pagini recente » Cod sursa (job #2178820) | Cod sursa (job #910723) | Cod sursa (job #2667772) | Cod sursa (job #2984978) | Cod sursa (job #3312325)
/******************************************************************************
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=1; i<=t; i++)
{
long long a, b;
int r;
fin >> a >> b;
while ( b !=0 )
{ r= a % b;
a = b;
b = r;
}
fout << a << endl;
}
return 0;
}