Cod sursa(job #1038026)

Utilizator thereauFMI Sandu Robert Stelian thereau Data 20 noiembrie 2013 22:25:53
Problema A+B Scor 100
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("adunare.out");
	citire >> a >> b;
	scriere << a + b;
	citire.close();
	scriere.close();
	return 0;
}