Cod sursa(job #2465824)

Utilizator GreenlightedDaniel Avasilcai Greenlighted Data 30 septembrie 2019 21:35:19
Problema A+B Scor 0
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.12 kb
using namespace std;

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

}