Cod sursa(job #295930)

Utilizator valentinroscaRosca Valentin valentinrosca Data 3 aprilie 2009 19:49:13
Problema A+B Scor 100
Compilator cpp Status done
Runda testx Marime 0.16 kb
#include<fstream.h>
#include<math.h>
long a,b;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int main()
{
	fin>>a>>b;
	fout<<a+b;
	return 0;
}