Cod sursa(job #2580600)

Utilizator AlexTrifanAlex Trifan AlexTrifan Data 13 martie 2020 19:44:20
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.21 kb
#include <fstream>
using namespace std;
ifstream fi("adunare.in");
ofstream fo("adunare.out");

int main()
{
    int a, b;
    fi>>a>>b;
    fo<<a+b;
    fi.close();
    fo.close();
    return 0;
}