Data Type Php

$a = 85;
$b = 24;
echo "

Original value of \$a is $a and \$b is
$b

";
$c = $a * $b;
echo "

Multiplied \$a and \$b and got $c

";
?>