Cod sursa(job #750966)

Utilizator razvin92FMI Rusu Razvan Gabriel razvin92 Data 23 mai 2012 19:17:12
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.17 kb
#include <fstream>
using namespace std;

int main()
{
	int a, b;
	fstream f("in.txt",ios::in);
	fstream g("out.txt",ios::out);
	f >> a >> b;
	g << a + b;
	return 0;
}