Cod sursa(job #2254267)

Utilizator uneven-shiverAlecu Stefan-Iulian uneven-shiver Data 4 octombrie 2018 22:32:17
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.22 kb
#include <fstream>

std::ifstream in("adunare.in");
std::ofstream out("adunare.out");

int main()
{
    int a, b;
    in >> a >> b;
    out << a + b << '\n';

    in.close();
    out.close();

    return 0;
}