Cod sursa(job #91198)
Utilizator | Data | 11 octombrie 2007 20:44:24 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include<fstream.h>
int main()
{unsigned 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();
return 0;}