Cod sursa(job #50472)

Utilizator andramarhipandra mihaela arhip andramarhip Data 7 aprilie 2007 19:41:40
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.17 kb
#include<fstream.h>
void main()
{

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