Cod sursa(job #3181437)

Utilizator zamfiresqAlexandra Zamfirescu zamfiresq Data 7 decembrie 2023 00:45:15
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.19 kb
#include <iostream>
#include <fstream>

int main(){
    int a, b;
    std::ifstream fin("adunare.in");
    std::ofstream fout("adunare.out");
    fin >> a >> b;
    fout << a + b;

    return 0;
}