Cod sursa(job #240661)

Utilizator boghiu.mariusBoghiu Marius Cristian boghiu.marius Data 8 ianuarie 2009 08:36:28
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.16 kb
#include<fstream.h>


ifstream f("adunare.in");
ofstream g("adunare.out");

int main()
{long a,b;
f>>a>>b;
g<<a+b<<endl;
f.close(); g.close();
return 0;
}