Cod sursa(job #3212670)

Utilizator Aurel_GacheGache Aurel Aurel_Gache Data 12 martie 2024 08:21:19
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.21 kb
#include <iostream>
#include <fstream>
using namespace std;

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

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