Cod sursa(job #2788994)

Utilizator MIHAELA.102Stancu Mihaela Simona MIHAELA.102 Data 26 octombrie 2021 19:14:18
Problema A+B Scor 0
Compilator cpp-64 Status done
Runda teme_upb Marime 0.21 kb
#include <iostream>
using namespace std;
int main()
{
    ifstream f("adunare.in");
    ofstream g("adunare.of");
    int a , b;
    f>>a>>b;
    g<<a+b;
    f.close();
    g.close();
    return 0;
}