Cod sursa(job #278206)

Utilizator cryowarCristian Barbu cryowar Data 12 martie 2009 10:10:20
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.2 kb
#include<fstream.h>

ifstream f("a+b.in");
ofstream g("a+b.out");

int main()
  {  
   long a,b;
   f>>a>>b;

   g<<a+b;

f.close();
g.close();

return 0;

     }