fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int funcion (int a, int b) {
  5.  
  6. return a + b;
  7.  
  8. }
  9.  
  10. int main() {
  11.  
  12. cout << funcion (10, 5) << endl;
  13.  
  14. return 0;
  15.  
  16. }
Success #stdin #stdout 0s 5280KB
stdin
Standard input is empty
stdout
15