Cod sursa(job #2683370)
| Utilizator | Data | 11 decembrie 2020 01:10:49 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp-64 | Status | done |
| Runda | Arhiva de probleme | Marime | 0.23 kb |
#include <fstream>
using namespace std;
int main()
{
ifstream fin("adunare.in");
int a, b;
fin >> a;
fin >> b;
fin.close();
ofstream fout("adunare.out");
fout << a + b;
fout.close();
}
