Concat

HI all,
How to concat two strings in Shell scrpits

suppose

x=a
y=b

i want to display it as
ab

How to do it ?

Thanks..

I'm not sure if this is what you want, simply use...
echo $x$y