Cod sursa(job #2244027)

Utilizator ajrohAjroh Ide ajroh Data 21 septembrie 2018 21:22:29
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.21 kb
#include<fstream>
using namespace std;

int main()
{
    int a,b;
    ifstream intra("adunare.in");
    ofstream iese("adunare.out");

    intra>>a>>b;
    iese<<a+b;
    intra.close();
    iese.close();
}