Cod sursa(job #628039)
Utilizator | Data | 31 octombrie 2011 14:48:31 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.19 kb |
#include<fstream>
using namespace std;
int main ()
{
fstream
f("adunare.in", ios::in), g("adunare.out", ios::out);
long a,b ;
f>>a>>b;
g<<a+b;
f.close();
g.close();
return 0;
}