Cod sursa(job #1071718)
Utilizator | Data | 3 ianuarie 2014 14:00:00 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.21 kb |
#include<fstream>
using namespace std;
fstream f("adunare.in",ios::in);
fstream g("adunare.out",ios::out);
int main()
{
long x,y;
f>>x>>y;
g<<x+y;
f.close();
g.close();
return 0;
}