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