Cod sursa(job #2353710)

Utilizator JohnnyTTache Radu Ioan JohnnyT Data 24 februarie 2019 15:29:08
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.22 kb
#include<fstream>

using namespace std;

int a, b;
int main(){
    fstream in("adunare.in", fstream::in);
    in >> a >> b;
    in.close();
    in.open("adunare.out", fstream::out);
    in << a + b;
    in.close();
}