Cod sursa(job #2188335)
Utilizator | Data | 27 martie 2018 09:06:00 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | bpc9 | Marime | 0.15 kb |
#include <fstream>
#include <cstdint>
int main() {
int32_t a, b;
std::ifstream{"adunare.in"} >> a >> b;
std::ofstream{"adunare.out"} << a + b;
}