Cod sursa(job #325257)
Utilizator | Data | 19 iunie 2009 18:39:49 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Lista lui wefgef | Marime | 0.16 kb |
#include<fstream.h>
int main()
{long a,b;
ifstream f("adunare.in");
f>>a;
f>>b;
f.close();
ofstream g("adunare.out");
g<<a+b;
g.close();
return 0;
}