Answer :
The whole line of code that performs an operation is this one:
multiply(add(multiply(a, b), add(multiply(a, c), multiply(b, c))), 2)
Let's do it step by step:
Step 1: Perform the inner group of parenthesis. Then expand going out, until you reach the bigger parenthesis.
Just bear in mind that multiply() = x * y
and add() = x + y
Last step: Get the final expression
( (a * b) + (a*c + b*c) )* 2
multiply(add(multiply(a, b), add(multiply(a, c), multiply(b, c))), 2)
Let's do it step by step:
Step 1: Perform the inner group of parenthesis. Then expand going out, until you reach the bigger parenthesis.
Just bear in mind that multiply() = x * y
and add() = x + y
Last step: Get the final expression
( (a * b) + (a*c + b*c) )* 2