Cod sursa(job #51385)
| Utilizator | Data | 11 aprilie 2007 20:42:01 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.14 kb |
#include<fstream.h>
main()
{
long a,b;
fstream f("adunare.in" , ios::in);
fstream g("adunare.out" , ios::out);
f>>a>>b;
g<<a+b;
}