*= c++

#include <iostream>

int main() {
    // Declare variables to store user input and the result
    int num1, num2, result;

    // Prompt the user to enter two numbers
    std::cout << "Enter the first number: ";
    std::cin >> num1;

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

    // Perform multiplication and store the result in the 'result' variable
    result = num1 * num2;

    // Display the result
    std::cout << "The result of multiplication is: " << result << std::endl;

    // Return 0 to indicate successful execution
    return 0;
}