Returns a substring of a specified length from the right of a string.
RIGHT$    ( string  , number of characters ] )
            └─┬──┘       └──────┬────────┘          
   String expression   Numeric expression  
RIGHT$("ABCDEF", 3)
10  A$="ABCDEFGHIJKLMNOPQRSTUVWXYZ"
20  PRINT A$
30  INPUT "1 TO 26 HOW MANY GET"; N
40  PRINT RIGHT$(A$, N)
50 END
Uses numeric input to display specified number of characters from end of alphabetic sequence.