You need to shift the first variable "up" (to the left) 4 places and THEN add the second variable.
Code:
Result = (VAR_A << 4) + VAR_B
But yeah, it IS using a mathematical operator but why don't you want that?

/Henrik.