Cod sursa(job #492897)

Utilizator andrey11Hilote Andrei andrey11 Data 16 octombrie 2010 11:59:42
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.18 kb
#include<fstream.h>
void main()
{	int A,B;
	ifstream f("adunare.in");
        ofstream g("adunare.out");
	f>>A;
	f>>B;
	
     g<<A+B<<endl;
	f.close();
        g.close();
}