Cod sursa(job #3041696)
Utilizator | Data | 1 aprilie 2023 10:32:58 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.21 kb |
#include <fstream>
int main() {
std::ofstream fout("adunare.out");
std::ifstream fin("adunare.in");
long long a, b;
fin >> a >> b;
fout << a+b;
fin.close();
fout.close();
return 0;
}