Cod sursa(job #138276)

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

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