Cod sursa(job #702605)

Utilizator botixMagyarosi Botond botix Data 2 martie 2012 00:14:12
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.21 kb
#include <iostream>
#include <fstream>

using namespace std;

int main()
{
	int a, b;
	fstream f, g;
	f.open("adunare.in", ios::in);
	g.open("adunare.out", ios::out);
	f >> a >> b;
	g << a+b;
	g.close();
}