Cod sursa(job #2642647)

Utilizator DragosC1Dragos DragosC1 Data 16 august 2020 15:40:58
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.22 kb
#include <fstream>
using namespace std;

int main() {
    int a, b;
    ifstream f("adunare.in");
    f >> a >> b;
    f.close();
    ofstream g("adunare.out");
    g << a + b;
    g.close();
    return 0;
}