<?php
function cube($x) {
     return $x*$x*$x;
}
?>
