Cod sursa(job #2787471)

Utilizator CRISTISTG05Cristian Stiegelbauer CRISTISTG05 Data 23 octombrie 2021 13:46:06
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.22 kb

#include <fstream>
using namespace std;

ifstream fin("adunare.in");
ofstream fout("adunare.out");

int main()
{
    int A, B, S;
    fin >> A;
    fin >> B;
    S = A + B;
    fout << S;
    return 0;
}