Cod sursa(job #2738574)

Utilizator JumpingIntoTheVoidDavid Petreanu JumpingIntoTheVoid Data 6 aprilie 2021 03:52:26
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.17 kb
#include <fstream>

int a,b;

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