Cod sursa(job #51406)
Utilizator | Data | 12 aprilie 2007 10:31:29 | |
---|---|---|---|
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;
}