Cod sursa(job #2225432)

Utilizator LIR16LazarIonutRadu LIR16 Data 27 iulie 2018 02:18:47
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.23 kb
#include <iostream>
#include <fstream>

using namespace std;

int main()
{
    long long int a,b;
    ifstream in;
    in.open("adunare.in");
    ofstream out("adunare.out");
    int a, b;
    in >> a >> b;
    out << a+b;
}