Cod sursa(job #203489)

Utilizator AdrianSoucupAdrian Soucup AdrianSoucup Data 16 august 2008 22:28:50
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.15 kb
#include <fstream.h>

int main ()
{
	long a, b;
	ifstream fin("adunare.in");
	ofstream fout("adunare.out");
	fin>>a>>b;
	fout<<a+b;
	return 0;
}