fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. // your code goes here
  6. int a,b;
  7. a = 30;
  8. b = 10;
  9.  
  10. cin >> a >> b;
  11.  
  12. cout << "SOMA = " << (a + b) << endl;
  13.  
  14. return 0;
  15. }
Success #stdin #stdout 0.01s 5288KB
stdin
stdout
SOMA = 40