fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int funcion (int x, int y) {
  5.  
  6. return x * y;
  7.  
  8. }
  9.  
  10. int main() {
  11.  
  12. int a, b;
  13.  
  14. cin >> a >> b;
  15.  
  16. cout << "Resultado: " << funcion (a, b) << endl;
  17.  
  18. return 0;
  19.  
  20. }
Success #stdin #stdout 0.01s 5276KB
stdin
4 5
stdout
Resultado: 20