Cod sursa(job #273571)

Utilizator alex92infoAlexandru Burghelea alex92info Data 8 martie 2009 19:09:18
Problema Jocul Flip Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.22 kb
#include<fstream.h>
 int main()
{ ifstream f("cmmdc.in");
  ofstream g("cmmdc.out");
  int a,b;
  f>>a;
  f>>b;
  while(a!=b)
  if(a>b) a=a-b;
  else b=b-a;

  g<<a<<'\n';
  f.close();
  g.close();
  return 0;

}