Use Variables
A variable is a named storage location you use to hold temporary data. For example, the following statement assigns the value 5 to a variable named x:
Once you have assigned a value to a variable, you can use the variable name to represent the data it contains. Therefore, the expression x+x is the same as 5+5 because the variable x contains the value 5.
Variable names are case-sensitive.