Cod sursa(job #288724)
| Utilizator | Data | 26 martie 2009 08:01:36 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | aa | Marime | 0.14 kb |
#include<fstream.h>
ifstream f("adunare.in");
ofstream g("adunare.out");
long a,b;
void main()
{f>>a>>b;
g<<a+b;
f.close();
g.close();}