Cod sursa(job #309476)

Utilizator gaby_oprinoiuOprinoiu Gabriel gaby_oprinoiu Data 30 aprilie 2009 13:17:45
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.18 kb
#include<fstream.h>
int main()
{int x,y,r;
ifstream f("cmmdc.in");
ofstream g("cmmdc.out");
f>>x>>y;
while(y>0)
{r=x%y;
 x=y;
 y=r;
}
if(x==1)
g<<0;
else
g<<x;
return 0;
}