MAX(A, B)
Returns the maximum value of A and B
Float MAX(Float A, Float B)
Integer MAX(Integer A, Integer B)
A - Integer or float value
B - Integer or float value
Maximum value of A and B
> PRINT MAX(1, 2)
2
> PRINT MAX(1.0, 2.0)
2.000000