Cod sursa(job #612114)

Utilizator psycho21rAbabab psycho21r Data 5 septembrie 2011 22:33:19
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.23 kb
//A+B infoarena.ro

#include "fstream"

using namespace std;

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