Cod sursa(job #3308633)

Utilizator alexwyoAlex Bindiu alexwyo Data 26 august 2025 18:38:06
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.25 kb
#include <fstream>
using namespace std;

ifstream fin("adunare.in");
ofstream fout("adunare.out");

void doWork();

int main()
{
    doWork();
    return 0;
}


void doWork()
{
    int a, b;
    fin >> a >> b;
    fout << a + b;
}