min()

Returns the number having the lower value between the two operands.

Syntax:
lower = min( numberA , numberB )

Example:
print min( 13, 24 )
will print value 13 because is the smaller value between the two numbers.

see also max() command