Cod sursa(job #1700128)

Utilizator andrei1299Ghiorghe Andrei Alexandru andrei1299 Data 9 mai 2016 17:16:40
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.25 kb
#include <iostream>
#include <fstream>
using namespace std;

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