Cod sursa(job #1069291)

Utilizator GhostMihneaROGigel Gigi GhostMihneaRO Data 29 decembrie 2013 19:00:44
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.17 kb
#include<fstream.h>

int a,b;

int main() 
{
	ifstream f("adunare.in");
	ofstream g("adunare.out");
	
	f>>a>>b;
	g<<a+b;
	
	f.close();
	g.close();
	
	return 0;	
}