Cod sursa(job #2904953)

Utilizator culbecAlexandru Profir culbec Data 18 mai 2022 21:01:12
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.55 kb
/******************************************************************************

                              Online C++ Compiler.
               Code, Compile, Run and Debug C++ program online.
Write your code in this editor and press "Run" button to compile and execute it.

*******************************************************************************/

#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;
}