// Math.max(a,b)
function
M_max(a,b){
if
(a>b){
return
a; }
b;
}
// Sample Code
log(M_max(20,9),
"\n"
);
log(M_max(-1230, 900),
log(M_max(100, 100),