can i concate two integers
like
int a=12
int b=41
c=1241
int c = (a*100) + b;
as a general rule you would not want to do that because if a or b are large enough it will cause data overflow and provide the wrong answer. If you are certain the values are small enough then it would be ok.