Cod sursa(job #2719191)

Utilizator northpole32Berintan Daniel northpole32 Data 9 martie 2021 17:34:30
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.21 kb
#include <fstream>
using namespace std;
ifstream in("adunare.in");
ofstream out ("adunare.out");
int main()
{
        int a,b;
        in>>a>>b;
        out<<a+b;
        out.flush();
        return 0;

}