Cod sursa(job #2257679)

Utilizator ipikachusIantoc Alexandru ipikachus Data 10 octombrie 2018 12:39:16
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.14 kb
#include <iostream>

using namespace std;

int main()
{
    int  A,B;
    cin>>A;
    cin>>B;
    cout<<A+B;
    return 0;
}