Cod sursa(job #530145)

Utilizator mircea.one1Mircea B mircea.one1 Data 6 februarie 2011 23:46:25
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.16 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;
}