Cod sursa(job #2853813)

Utilizator DanielEParfene Daniel Emanuel DanielE Data 20 februarie 2022 17:18:37
Problema A+B Scor 0
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.2 kb
#include <fstream>
using namespace std;
ifstream f ("aduna.in");
ofstream g ("aduna.out");
int main() {
    int a, b;
    f >> a >> b;
    g << a + b;
    f.close();
    g.close();
    return 0;
}