Cod sursa(job #1038025)

Utilizator thereauFMI Sandu Robert Stelian thereau Data 20 noiembrie 2013 22:24:32
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.22 kb
#include<fstream>
using namespace std;
int main()
{
	int a, b;
	ifstream citire("adunare.in");
	ofstream scriere("afunare.out");
	citire >> a >> b;
	scriere << a + b;
	citire.close();
	scriere.close();
	return 0;
}