Cod sursa(job #908976)

Utilizator RobertmwPamfile Robert Robertmw Data 10 martie 2013 13:00:55
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.18 kb
#include <iostream>
#include <fstream>
using namespace std;
ifstream f("adunare.in");
ofstream t("adunare.out");
int main()
{
	long a,b;
	f>>a;
	f>>b;
	t<<a+b;
	return 1;
}