fork download
  1. #include <iostream>
  2. int main() {
  3. int firstNumber { };
  4. int secondNumber { };
  5.  
  6. std::cout << "Enter two numbers separated by spaces: ";
  7. std::cin >> firstNumber >> secondNumber;
  8.  
  9. int product {firstNumber * secondNumber};
  10. std::cout << "The product of both the numbers are: " << product << std::endl;
  11. return 0;
  12. }
Success #stdin #stdout 0.01s 5284KB
stdin
69 69
stdout
Enter two numbers separated by spaces: The product of both the numbers are: 4761