Quotient = Number AS Integer DIV Number AS Integer
Calculates the quotient of two Integer numbers, rounding down.
This is a synonymous for the \ operator.
PRINT 20 DIV 7, 21 DIV 7 2 3