/* Tanzila Islam Southeast University mail : tanzilamohita@gmail.com Problem Link: https://www.urionlinejudge.com.br/judge/en/problems/view/1003 */ #include <iostream> using namespace std; int main() { int A, B, SOMA; cin >> A >> B; SOMA = A + B; cout << "SOMA = " << SOMA << endl; return 0; }
No comments:
Post a Comment