Cod sursa(job #156643)

Utilizator DragosStyleDragos Foianu DragosStyle Data 12 martie 2008 17:56:28
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.17 kb

#include<fstream.h>

int main()
{
 int a,b;
 ifstream f("adunare.in");
 ofstream g("adunare.out");
 f >> a >> b;
 g << a+b;
 f.close();
 g.close();
 return 0;
}