Cod sursa(job #278609)
Utilizator | Data | 12 martie 2009 13:39:45 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.15 kb |
#include <fstrem>
int main () { ifstrem f("adunare.in");
ofstrem g("adunare.out");
int a, b;
f>>a>>b;
g<<a+b;
f.close ();
g.close ();
return 0;
}