Cod sursa(job #353797)

Utilizator dany123Florea Daniel dany123 Data 6 octombrie 2009 10:48:06
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.18 kb
#include <fstream>
using namespace std;
int main () {
ifstream z("adunare.in");
ofstream x("adunare.out");
	int a,b;	
	z>>a>>b;
	x<<a+b;
	z.close(); x.close();
	return 0;
}