Cod sursa(job #628064)
Utilizator | Data | 31 octombrie 2011 14:57:59 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include<fstream>
using namespace std;
void 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();
retern 0;
}