INT (real-exp)
Converts the value of the real-exp into an INTEGER.
If real-exp contains a fractional part, it will be
truncated.
Program Example.
00100 REM The INT function.
00110 AO = 987.8765
00120 LET A = INT(A0)
00130 PRINT A
00140 END
Try it
See also FRACT, FLT.