Cod sursa(job #492894)

Utilizator andrey11Hilote Andrei andrey11 Data 16 octombrie 2010 11:55:27
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;
	ifstream f("adunare.in");
	f>>A;
	f>>B;
	ofstream g("adunare.out");
     g<<A+B<<endl;
	f.close();
        g.close();
}