Cod sursa(job #274436)

Utilizator ISZLAIIszlai Lehel ISZLAI Data 9 martie 2009 19:09:34
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.2 kb
#include<fstream.h>

void main (void)

{ fstream f,g;
  long double a,b;
  f.open("adunare.in",ios::in);
  f>>a;
  f>>b;
  f.close();
  g.open("adunare.out",ios::out);
  g<<a+b;
  g.close();

}