Cod sursa(job #910150)

Utilizator apopeid13Apopeid Alejandro apopeid13 Data 10 martie 2013 18:59:51
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()
{int a,b;
f>>a;
f>>b;
g<<a+b;
f.close();
g.close();
return 0;
}