Cod sursa(job #473709)

Utilizator olly2204Olly2204 olly2204 Data 31 iulie 2010 12:57:54
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.3 kb
// 1.cpp : Defines the entry point for the console application.
//


#include <iostream>
#include <fstream>
using namespace std;



ifstream f("adunare.in");
ofstream g("adunare.out");

int main()
{
	long a,b;

	f >> a >> b;

	g << a+b;

	f.close();
	g.close();


	return 0;
}