Multiplication
Perform multiplication with the given values and return the result.
Sample Code:
function multiplyOp(num1,num2) {
// Enter your logic here...
}
Examples:
Input: 7,7
Output: 49
Explanation: 49 is the result of multiplying 7 by 7.
Input: -0.28,0.78
Output: -0.22
Explanation: Round the output number to two decimal places.