fork download
  1. #include <iostream>
  2. int main(int argc, char **argv)
  3. {
  4. int firstNumber { };
  5. int secondNumber { };
  6.  
  7. std::cout << "Enter two numbers separated by spaces: ";
  8. std::cin >> firstNumber;
  9. std::cin >> secondNumber;
  10.  
  11. int product = {firstNumber * secondNumber};
  12.  
  13. std::cout << "The product of the two numbers is: " << product << "." << std::endl;
  14. return 0;
  15. }
Success #stdin #stdout 0s 5288KB
stdin
1000 2000
stdout
Enter two numbers separated by spaces: The product of the two numbers is: 2000000.