Cod sursa(job #1256076)
| Utilizator | Data | 5 noiembrie 2014 19:41:05 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Lista lui wefgef | Marime | 0.23 kb |
#include <fstream>
using namespace std;
int main()
{
int a, b;
ifstream fin("adunare.in");
fin >> a >> b;
fin.close();
ofstream fout("adunare.out");
fout << a + b;
fout.close();
return 0;
}
