how to find product of a given numbers in c++

#include <iostream>

int main() {
    int num1, num2, product;

    std::cout << "Enter first number: ";
    std::cin >> num1;

    std::cout << "Enter second number: ";
    std::cin >> num2;

    product = num1 * num2;

    std::cout << "The product of the two numbers is: " << product;

    return 0;
}