Cod sursa(job #300961)

Utilizator jezabestBurnei Alexandru Vlad jezabest Data 7 aprilie 2009 20:20:33
Problema A+B Scor 0
Compilator cpp Status done
Runda info_conquiztador002 Marime 0.23 kb
#include <fstream.h>
#include <math.h>
#include <stdlib.h>
#include <iostream.h>
void main ()
{
long int a,b;
fstream f("suma.in",ios::in);
f>>a;
f>>b;
f.close ();
fstream g("suma.out",ios::out);
g<<a+b;
g.close ();
}