fork download
  1. #include <iostream>
  2. int main() {
  3. int x { }; // value-initialization of named object
  4. int y { }; // value-initialization of named object
  5.  
  6. std::cout << "Enter two numbers separated by space: ";
  7. std::cin >> x >> y;
  8.  
  9. int product = {x * y};
  10.  
  11. std::cout << "The product of the numbers: " << x << " and " << y << " is " << product << std::endl;
  12. return 0;
  13. }
Success #stdin #stdout 0.01s 5272KB
stdin
78 43
stdout
Enter two numbers separated by space: The product of the numbers: 78 and 43 is 3354