Cod sursa(job #1992109)

Utilizator StefyanStefan Stanciu Stefyan Data 19 iunie 2017 14:38:58
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.25 kb
#include <fstream>

using namespace std;

int main()
{
    ifstream fin( "adunare.in" );
    ofstream fout( "adunare.out" );
    unsigned long a, b;

    fin>> a;
    fin>> b;

    //c = a + b;

    fout<< a + b << endl;

    return 0;
}