Cod sursa(job #228669)
| Utilizator | Data | 7 decembrie 2008 18:53:06 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.17 kb |
#include <iostream.h>
#include <fstream.h>
void main()
{int a,b;
ifstream f("adunare.in");
ofstream g("adunare.out");
f>>a>>b;
g<<a+b;
f.close();
g.close();
}
