Cod sursa(job #672271)
| Utilizator | Data | 1 februarie 2012 20:14:09 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.18 kb |
#include<fstream>
using namespace std;
ifstream h("adunare.in");
ofstream g("adunare.out");
int a,b;
int main()
{
h>>a>>b;
g<<a+b;
g.close();
h.close();
return 0;
}