Cod sursa(job #2642320)

Utilizator iiShiroVlad Cojocaru iiShiro Data 14 august 2020 18:18:29
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.26 kb
#include <iostream>
#include <fstream>

using namespace std;

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

    out << (a+b) ;

    in.close();
    out.close();
    return 0;
}