Cod sursa(job #2536076)

Utilizator ichspielendeutschstoica tiberiu andrei ichspielendeutsch Data 1 februarie 2020 14:43:58
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.25 kb
#include <iostream>
#include<fstream>
using namespace std;

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