<?php
function maxValue($a=0,$b=0){
	$c = $a>$b?$a:$b;
	return $c;
}
?>
