Cod sursa(job #3350283)

Utilizator hyper27Antonio Nicolae hyper27 Data 6 aprilie 2026 22:08:23
Problema A+B Scor 0
Compilator c-64 Status done
Runda Arhiva de probleme Marime 0.21 kb
#include <fstream>
using namespace std;

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