Cod sursa(job #1473094)

Utilizator kowalskiAndrei R. kowalski Data 18 august 2015 15:51:45
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.24 kb
#include <fstream>

using namespace std;

int main()
{
    ifstream fin("adunare.in");
    ofstream fout("adunare.out");

    unsigned long int a, b;

    fin >> a >> b;

    fout << a+b;

    fout.close();
    return 0;
}