Cod sursa(job #727911)

Utilizator pds810930Soreanu Dumitru-Paul pds810930 Data 28 martie 2012 12:53:27
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.18 kb
#include<fstream>
using namespace std;
int main()
{
int a,b;
fstream f("adunare.in",ios::in);
fstream g("adunare.out",ios::out);
f>>a>>b;
g<<a+b;
f.close();
g.close();
}