Cod sursa(job #10803)

Utilizator free2_do_rhymesGet a Life free2_do_rhymes Data 29 ianuarie 2007 15:43:05
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.15 kb
#include <fstream.h>
double a,b;
int main()
{
	ifstream f("adunare.in");
	ofstream g("adunare.out");
	f>>a>>b;
	g<<(a+b);
        return 0;
}