Source code -
CLS
INPUT "Enter the first number:"; num1
INPUT "Enter the second number:"; num2
multiply = num1 * num2
Print "The product of those two numbers are:"; multiply
END