Cod sursa(job #843879)
| Utilizator | Data | 28 decembrie 2012 16:06:54 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | joaca | Marime | 0.18 kb |
#include<fstream>
using namespace std;
ifstream f("input.in");
ofstream g("output");
int main()
{
int a,b;
f>>a>>b;
g<<a+b;
g.close();
return 0;
}
