Cod sursa(job #628040)
Utilizator | Data | 31 octombrie 2011 14:49:27 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.19 kb |
#include<fstream>
using namespace stg
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 ;
}