To truncate an expression to a whole number.
INT(x)
Negative numbers return the next lowest number.
The FIX and CINT functions also return integer values.
PRINT INT(98. 89) 98
PRINT INT(-12. 11) -13