The task is to concat the binary of 2 given numbers.
Example:
Given 5 (101) and 3 (011),
5
101
3
011
You just shift one number and then or with the other number:
shift
or
int a = 5; int b = 3; int c = (a << 3) | b;