Cod sursa(job #750838)

Utilizator NonstopNichita Emil Nicolae Nonstop Data 23 mai 2012 12:54:04
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.18 kb
#include <fstream.h>
using namespace std;
long a,b;
int main () {
	ifstream f("adunare.in");
	ofstream g("adunare.out");
	f>>a>>b;
	g<<a+b;
	g.close();
	f.close();
	return 0;
}