Cod sursa(job #856995)

Utilizator lunguandreiLungu Andrei lunguandrei Data 17 ianuarie 2013 09:40:17
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.18 kb
#include<iostream.h>
#include<fstream.h>
fstream f("adunare.in",ios::in);
fstream g("adunare.out",ios::out);
int a,b;
main()
{
	f>>a;
	f>>b;
	g<<a+b;
	f.close();
	g.close();
}