Integer variables are always 32 bits, and characters in strings are always 16 (except they can be between 8 and 24 bits when saved)
Strings are way too slow to store data efficiently, though.
You could store two 16 bit values in an integer by doing something like:
INTEGER=V1 OR (V2<<16) V1=INTEGER AND &HFFFF V2=INTEGER>>16