Cod sursa(job #3245919)

Utilizator Bursuc25Patric Borgovan Bursuc25 Data 1 octombrie 2024 09:47:25
Problema A+B Scor 0
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.19 kb
#include <fstream>
using namespace std;

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

int main()
{
    int a, b;
    fin >> a >> b;
    fout << a + b;

    return 0;
}