Cod sursa(job #3212669)

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

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

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