Cod sursa(job #178962)
Utilizator | Data | 15 aprilie 2008 13:39:52 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.19 kb |
#include <fstream.h>
long long a,b;
int main ()
{
fstream f("adunare.in" ,ios::in);
fstream g("adunare.out" ,ios::out);
f>>a;
f>>b;
f.close();
g<<a+b;
f.close();
return 0;
}