Cod sursa(job #138278)

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

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