Cod sursa(job #217437)

Utilizator lucian_chisLucian Chis lucian_chis Data 28 octombrie 2008 16:58:33
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.16 kb
#include <iostream.h>
#include <fstream.h>

int main()
{
	long a,b;
	ifstream f("adunare.in");
	ofstream g("adunare.out");

	f>>a>>b;
	g<<a+b;
}