<?php
function multiply($x, $y) {
return $x * $y;
}

$result = multiply(4, 5);
echo $result;
?>