Cod sursa(job #2288286)

Utilizator MIGAAndrei Miga MIGA Data 23 noiembrie 2018 00:15:39
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.26 kb
#include <fstream>

using namespace std;

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