Cod sursa(job #385484)

Utilizator ErgoVicol Sergiu Constantin Ergo Data 22 ianuarie 2010 20:14:56
Problema A+B Scor 100
Compilator cpp Status done
Runda Lista lui wefgef Marime 0.2 kb
#include <fstream>

using namespace std;

ifstream fin("adunare.in");
ofstream fout("adunare.out");

long long a, b;

int main()
{
	fin >>a >>b;
	fout <<a + b;
	fout.close();
	return 0;
}