Cod sursa(job #873238)

Utilizator stiharus96Dovan Andrei Dorinel stiharus96 Data 6 februarie 2013 23:20:14
Problema Jocul Flip Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.25 kb
#include<fstream>
using namespace std;
ifstream f("cmmdc.in");
ofstream g("cmmdc.out");
int a,b,r,nr,x;
int main()
{
	f>>a>>b;
	r=1;
	while(r!=0)
	{
		r=a%b;
		a=b;
		b=r;
	}
	if(a==1)
		g<<"0";
	else
		g<<a;
	return 0;
		
}