Cod sursa(job #1858162)

Utilizator DumitrescuToma104Dumitrescu Toma Ioan DumitrescuToma104 Data 27 ianuarie 2017 08:21:01
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.13 kb
#include <iostream>

using namespace std;

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

    return 0;
}