Return the larger value of a or b.
max( a, b )
This function returns the larger of the two values, a or b.
a
b
If a>=b, returns the value a If a<b, returns the value b
max(15, 17)
Returns 17.