Cod sursa(job #2333498)

Utilizator phxroGabriel Simpetru phxro Data 1 februarie 2019 11:30:19
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.23 kb
#include <iostream>
#include <fstream>

using namespace std;

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


    long long a, b;
    in >> a >> b;
    out << a+b;
    
    return 0;
}