Cod sursa(job #314718)

Utilizator revanMircea Urse revan Data 12 mai 2009 18:15:28
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.22 kb
using namespace std;
#include <fstream>

int main() {
	ifstream ifs("adunare.in");
	ofstream ofs("adunare.out");
	int32_t a, b;
	
	ifs >> a >> b;
	ofs << a + b;
	
	ifs.close();
	ofs.close();
	return 0;
}