Cod sursa(job #1895813)
Utilizator | Data | 28 februarie 2017 11:11:59 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.15 kb |
#include <fstream>
int main(void) {
std::ifstream f("adunare.in");
long a, b;
f >> a >> b;
std::ofstream o("adunare.out");
o << a+b;
return 0;
}