Cod sursa(job #2861188)

Utilizator mariog901Grigore Mario mariog901 Data 3 martie 2022 17:42:24
Problema A+B Scor 0
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.19 kb
#include<iostream>
#include<fstream>
using namespace std;
ifstream fin("aplusb.in");
ofstream fout("aplusb.out");

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