Cod sursa(job #831137)

Utilizator TudorMTudor Moldovanu TudorM Data 8 decembrie 2012 10:39:49
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.17 kb
#include<fstream.h>
ifstream f("adunare.in");
ofstream g("adunare.out");
int a, b, s;
int main()
{
	f>>a>>b;
	s=a+b;
	g<<s;
	f.close();
	g.close();
	return 0;
}