Cod sursa(job #553660)

Utilizator alexb111Alex Burga alexb111 Data 14 martie 2011 10:54:36
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.18 kb
# include <fstream.h>
ifstream f("adunare.in");
ofstream g("adunare.out");
using namespace std;
long int a,b;
int main ()
{f>>a>>b;
g<<a+b;
f.close ();
g.close ();
return 0;}