Cod sursa(job #2219080)
| Utilizator | Data | 7 iulie 2018 01:36:09 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.22 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;
}