Cod sursa(job #555019)

Utilizator ionutpPala Ionut ionutp Data 15 martie 2011 11:08:19
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.17 kb
#include <fstream>
using namespace std;
ifstream fin("fisier.in");
ofstream fout("fisier.out");
int main()
{
	int a, b;
	fin >> a;
	fin >> b;
	fout << a + b;
}