Cod sursa(job #2399791)

Utilizator MustangOleg Vallas Mustang Data 8 aprilie 2019 00:05:33
Problema A+B Scor 0
Compilator cpp-64 Status done
Runda test_mustang Marime 0.13 kb
#include<bits/stdc++.h>

using namespace std;

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