Cod sursa(job #156640)

Utilizator DragosStyleDragos Foianu DragosStyle Data 12 martie 2008 17:55:26
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.16 kb

#include<fstream.h>

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