Every key on your keyboard is mapped out like LBFN's pic, even if some of your keys have different symbols on them to the ones in the pic that doesnt matter, it is the position of the keys the numbers are assigned to.
The keystate command will tell you the state of any key on the keyboard (1=pressed 0=up), all you have to do is supply the function with the number that represents the key you want to check. i.e. keystate(12) would return the state of "-" and keystate(13) of "+".
I'm guessing you are using these keys to increase/decrease a variable; because of the speed at which the computer executes your code it is near impossible to register a single key press, for this you will have to write your own routine.
A simple switch can be implemented like so...
sync on
x = 0
Do
old_minus = new_minus
new_minus = keystate(12)
old_plus = new_plus
new_plus = keystate(13)
if new_plus > old_plus then inc x
if new_minus > old_minus then dec x
print x
sync:cls
Loop
can't read?