Cod sursa(job #887047)
| Utilizator | Data | 23 februarie 2013 15:09:12 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | leitennine | Marime | 0.18 kb |
#include <fstream>
using namespace std;
int main()
{
int a,b;
ifstream f("adunare.in");
ofstream g("adunare.out");
f >> a>>b;
g<<a+b;
return 0;
}
