Cod sursa(job #2202754)

Utilizator IBelieveInGodAlexandrescu Andrei Robert IBelieveInGod Data 9 mai 2018 20:06:36
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;
    cin>>b;
    cout<<a+b;

    return 0;
}