Cod sursa(job #91192)
Utilizator | Data | 11 octombrie 2007 20:33:06 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.16 kb |
#include<fstream.h>
void main()
{int a,b;
fstream f("adunare.in", ios::in);
f>>a>>b;
fstream g("adunare.out", ios::out);
g<<a+b;
f.close();
g.close();
}