fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int x, y, PROD;
  6. cin >> x >> y;
  7. PROD = x * y;
  8. cout << "PROD = " << PROD << endl;
  9. return 0;
  10. }
Success #stdin #stdout 0s 3300KB
stdin
3
9
stdout
PROD = 27