string manipulation

if I have two string variable, how do I add one to anther.
like

a= "a"
b="b"
c=$a+$b

but that doesn't work.

Is there anyway to solve it.

a="a"
b="b"
c="$a$b"

addition is for anything numeric...
What do you mean by adding one to another? a simple concatenation?