Cod sursa(job #2824264)

Utilizator IoaaanRotaru Ioan Constantin Ioaaan Data 31 decembrie 2021 20:10:29
Problema A+B Scor 0
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.52 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>

using namespace std;
ifstream cin("adunare.in");
ofstream cout("adunare.out");
int main()
{
    int a,b;
    cin>>a>>b;
    cout<<a+b;

    return 0;
}