Cod sursa(job #489055)

Utilizator georgel19Crismaruc Gheorghe georgel19 Data 30 septembrie 2010 20:27:23
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.18 kb
#include<iostream.h>
#include<fstream.h>
int main()
{
	int a,b;
	ifstream f("adunare.in");
	ofstream g("adunare.out");
	f>>a>>b;
	g<<a+b;
g.close();
f.close();
return 0;
}