<?php
function add($a, $b) {
echo $a + $b;
}

add(5, 10);
?>