Cod sursa(job #2973914)

Utilizator HisokaDaniel Hategan Hisoka Data 2 februarie 2023 20:02:16
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.27 kb
#include <iostream>
#include <fstream>

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

int main() {
    long long a, b;
    fin >> a >> b;
    fout << a + b;
    fin.close();
    fout.close();
    return 0;
}