Cod sursa(job #508404)

Utilizator edytzu15Andrei Edouard edytzu15 Data 8 decembrie 2010 09:37:08
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.19 kb
#include <iostream>
#include <fstream>
using namespace std;
int main ()
{
	int a,b;
	ifstream f1("suma.in");
	ofstream f2("suma.out");
	f1>>a>>b;
	f2<<a+b;
	f1.close();
	f2.close();
}