Cod sursa(job #2016433)

Utilizator OA123Orban Aron OA123 Data 29 august 2017 13:52:23
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.24 kb
#include <iostream>
#include <fstream>

using namespace std;

int main()
{
    ifstream f("adunare.in");
    
    int a, b;

    f >> a >> b;
    f.close();

    ofstream g("adunare.out");

    g << a + b;

    g.close();
    

    return 0;
}