Cod sursa(job #865792)

Utilizator rusdany96Alex bar rusdany96 Data 26 ianuarie 2013 23:33:17
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.2 kb
#include <fstream>

using namespace std;

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