Cod sursa(job #2460186)

Utilizator tacaTecuceanu Gabriel-Cristian taca Data 23 septembrie 2019 06:15:42
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.16 kb
#include <fstream>

int main() {
    std::ifstream f("adunare.in");
    int a, b;
    f >> a >> b;

    std::ofstream g("adunare.out");
    g << a + b;
}