Cod sursa(job #2193430)
Utilizator | Data | 10 aprilie 2018 09:26:58 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.16 kb |
#include <fstream>
int main() {
std::ofstream out("adunare.out");
std::ifstream in("adunare.in");
long a, b;
in >> a >> b;
out << a + b;
return 0;
}