fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int suma(int x, int y) {
  5. return x + y;
  6. }
  7.  
  8. int produs(int x, int y) {
  9. return x * y;
  10. }
  11.  
  12. int main() {
  13. int a, b;
  14. cout << "a = "; cin >> a;
  15. cout << "b = "; cin >> b;
  16. }
Success #stdin #stdout 0.01s 5320KB
stdin
Standard input is empty
stdout
a = b =