--TEST--
Multiply 3 variables and print result
--FILE--
<?php $a=2$b=4$c=8$d=$a*$b*$c; echo $d?>
--EXPECT--
64