Cod sursa(job #3216532)

Utilizator boncea1Ana Boncea boncea1 Data 17 martie 2024 18:08:02
Problema A+B Scor 0
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.48 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>

int main()
{
    int a, b, s;
    std::cin >> a >> b;
    s = a + b;
    std::cout << s;

    return 0;
}