Cod sursa(job #2922193)

Utilizator AndreiLeusteanLeustean Andrei AndreiLeustean Data 5 septembrie 2022 18:56:38
Problema A+B Scor 0
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.12 kb
#include <iostream>

using namespace std;

int main()
{
    int a, b;
    cin>>a>>b;
    cout<<a+b;
    return 0;
}