Cod sursa(job #160088)

Utilizator yippeeErja Eduard yippee Data 14 martie 2008 18:38:50
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 fin("adunare.in");
ofstream fout("adunare.out");

fin>>a>>b;

fout<<a+b;

fin.close();
fout.close();
}