Cod sursa(job #2725570)
Utilizator | Data | 19 martie 2021 10:53:36 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.24 kb |
#include <iostream>
#include <fstream>
int main()
{
std::ifstream fin("adunare.in");
std::ofstream fout("adunare.out");
int a, b;
fin >> a >> b;
fout << a + b;
fin.close();
fout.close();
return 0;
}