Cod sursa(job #2789001)

Utilizator MIHAELA.102Stancu Mihaela Simona MIHAELA.102 Data 26 octombrie 2021 19:20:13
Problema A+B Scor 0
Compilator cpp-32 Status done
Runda teme_upb Marime 0.23 kb
#include <iostream>
#include<fstream>
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;
}