Cod sursa(job #2648281)

Utilizator alex_danielManea Daniel Alexandru alex_daniel Data 9 septembrie 2020 18:29:09
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.19 kb
#include <fstream>

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

int main()
{

    int a{}; int b{};

    fin >> a >> b;
    fout << a+b;

    return 0;
}