Cod sursa(job #3307290)

Utilizator _andr31Rusanescu Andrei-Marian _andr31 Data 19 august 2025 17:08:45
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.2 kb
#include <iostream>
#include <fstream>

using namespace std;

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