num max(num a, num b)
Returns the greater of two numbers.
max(3, 5) -> 5 max(5, 3) -> 5 max(8.0, 7.5) -> 8.0