Cod sursa(job #209545)

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