Cod sursa(job #614558)

Utilizator alex_steopoaieAlex Steopoaie alex_steopoaie Data 6 octombrie 2011 20:24:12
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.17 kb
#include<fstream>
using namespace std;

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