Rebooting the QBasic we all know and love!
Returns the next integer value smaller than or equal to the specified numeric expression.
INT(numeric_expression)
INT
numeric_expression is any numeric expression.
PRINT INT(99.8), INT(99.1), INT(-99.2)
99 99 -100