whilst i appreciate that this has troll all over it, i'll give it a go..
the real issue here is which has higher precedent, division or multiplication?
i.e, does a/b*c = (a/b)*c or a/(b*c) ?
there are rules for both, PEMDAS and BEDMAS are the two i've heard of. however, the former yields 2 as the answer, where as the latter gives 288.
when i wrote a compiler, which must evaluate expressions exactly like this, we were told division binds stronger than multiplication. furthermore, wikipedia seems to agree with me, that division binds stronger, so i'm more inclined to believe that the answer is in fact 288.
i guess it depends who you want to believe really..!
thanks,
p.s i'm a 3rd year maths and computer science student.
edit: further reading suggests that you should perform left to right evaluation in ambiguous situations like this, as multiplication and division have equal precedence. (this again gives 288..)