Cod sursa(job #2225431)

Utilizator LIR16LazarIonutRadu LIR16 Data 27 iulie 2018 02:17:01
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.21 kb
#include <iostream>
#include <fstream>

using namespace std;

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