Cod sursa(job #447194)

Utilizator R.A.RFMI Romila Remus Arthur R.A.R Data 27 aprilie 2010 22:37:00
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.17 kb
#include <fstream>
using namespace std;
ifstream in("adunare.in");
ofstream out("adunare.out");
int main ()
{
	int a,b;
	in>>a>>b;
	out<<a+b<<'\n';
	return 0;
}