Cod sursa(job #2333179)
Utilizator | Data | 31 ianuarie 2019 19:10:11 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include <fstream>
using namespace std;
int main()
{
ifstream i("adunare.in");
ofstream o("adunare.out");
int a, b;
i >> a >> b;
o << a + b;
i.close();
o.close();
}