Cod sursa(job #2553645)

Utilizator Benten3000Alexandru Benteu Benten3000 Data 22 februarie 2020 10:46:33
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.17 kb
#include <fstream>
using namespace std;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int main()
{
    int a,b;
    fin>>a;
    fin>>b;
    fout<<a+b;
}