Cod sursa(job #2719188)

Utilizator northpole32Berintan Daniel northpole32 Data 9 martie 2021 17:31:35
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.19 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;
        return 0;

}