Cod sursa(job #2774825)

Utilizator eneagoeEugen Neagoe eneagoe Data 13 septembrie 2021 00:50:36
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.22 kb
#include <iostream>
#include <fstream>

using namespace std;

int main(void)
{
    ifstream fin("adunare.in");
    ofstream fout("adunare.out");

    long long int a, b;

    fin >> a >> b;
    fout << a + b;

    return 0;
}