Dim is a declaration of a variable
eg. dim x as Integer
x is like a container that can hold any number (integer) now
so you can assing numbers to it
eg. x= 10
and then perform operations to it.
x = x+3 (equates to x=10 +3)
Btw. Your are probably better off looking at tutorials on the web rather than asking every basic question on forums.