Cod sursa(job #4110)

Utilizator the_godfatherIacob Ioan Fanica the_godfather Data 30 decembrie 2006 15:08:21
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.15 kb
#include <fstream.h>
long long a,b;
int main()
{
	ifstream f("adunare.in");
   f>>a>>b;
   ofstream g("adunare.out");
   g<<a+b;
	return 0;
}