Cod sursa(job #785630)

Utilizator petiVass Peter peti Data 9 septembrie 2012 14:29:23
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.18 kb
#include <fstream>
using namespace std;


int main(int argc,char **argv){
	ifstream ifs("adunare.in");
	ofstream ofs("adunare.out");
	int a,b;
	ifs>>a;
	ifs>>b;
	ofs<<a+b;
	ofs.close();
}