Cod sursa(job #661898)

Utilizator alex_d01Alex Silviu alex_d01 Data 15 ianuarie 2012 14:29:42
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 a,b,s;
	ifstream f("adunare.in");
	ofstream g("adunare.out");
	f>>a;
	f>>b;
	s = a + b;
	g<<s;
	return 0;
}