Cod sursa(job #583976)

Utilizator blustudioPaul Herman blustudio Data 23 aprilie 2011 14:41:34
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.22 kb
#include <fstream>
using namespace std;

int main()
{
	ifstream fin("adunare.in");
	ofstream fout("adunare.out");
	long long int a, b, s;
	fin >> a >> b;
	s = a + b;
	fout << s;
	fin.close();
	fout.close();
}