Cod sursa(job #498987)

Utilizator nemoukpasa and nemouk Data 8 noiembrie 2010 08:19:26
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.19 kb
#include <fstream.h>

ifstream fin ("text.in");
ofstream fout ("text.out");

int main()

{
	long long int a, b;
	fin>>a>>b;
	fout<<a+b;
	fin.close();
	fout.close();
	return 0;
}