Cod sursa(job #519695)

Utilizator qwertyuiTudor-Stefan Berbinschi qwertyui Data 6 ianuarie 2011 11:40:39
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.15 kb
#include <fstream.h>
long  a,b;
int main()
{
	ifstream fin ("adunare.in");
	ofstream fout ("adunare.out");
	fin >>a >>b;
	fout <<a+b;
	return 0;
}