Cod sursa(job #209546)

Utilizator Daniel0001Muntaenu Daniel Daniel0001 Data 23 septembrie 2008 08:36:19
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.15 kb
#include<fstream.h>
long a,b;
int main()
{ifstream f("ab.in");
 ofstream g("ab.out");
 f>>a>>b;
 g<<a+b;
 f.close();
 g.close();
 return 0;
}