Cod sursa(job #138275)

Utilizator blowfishmeBlowfish Ion blowfishme Data 18 februarie 2008 09:39:45
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.16 kb
#include <fstream.h>

void main(){
	long a,b,c;
	ifstream f("adunare.in");
	f>>a>>b;
	f.close();
	c=a+b;
	ofstream f("adunare.out");
	g<<c;
	g.close();
}