Hey guys, I'm trying to move on to C++. Basically, the problem is that I need to translate the following formula into computer code:

I want it to compute the result of intWidth + (intWidth / 2)

Using PEMDAS, we would divide intWidth by 2 first, then add intWidth to the result. I'm sure most of you already know this, but there it is just in case.