Cod sursa(job #2336103)
Utilizator | Data | 4 februarie 2019 19:51:01 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.15 kb |
#include <iostream>
using namespace std;
int main() {
int a, b;
cin >> a >> b;
std::cout << a + b << std::endl;
std::cin.get();
return 0;
}