mod Example

10    CLEAR SCREEN
20    X=5
30    Y=5
40    PRINT "The";X;"MOD";Y;"is";X MOD Y
50    PRINT "The";X;"MODULO";Y;"is";X MODULO Y
60    END