fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int a, b, c;
  6.  
  7. cin >> a;
  8. cin >> b;
  9. cin >> c;
  10.  
  11. int suma = a + b + c;
  12.  
  13. cout << suma << endl;
  14.  
  15. return 0;
  16. }
Success #stdin #stdout 0.01s 5276KB
stdin
100
-68
12
stdout
44