A literal is a value that you directly type into a script. If the value you assign to a literal is a number it doesn't go in quotes, however if it's a string value it needs quotes.
Dim myFirstLiteral, mySecondLiteral
myFirstLiteral = 20 mySecondLiteral = "John"
For more information about VBScript, check out our VBScript Training Videos