Cod sursa(job #1038020)

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