Question
Join 32 bit int to 64 bit int
Hi all,
I try to create services for joining 2, 32 bit int as a high_byte and low_byte.
Like join() function in picture below.

But seem like in services can't left shift 32 index.
I try to use (3 << 32) the result is always 3 not 12,884,901,888.
But when I use (3<<2) the result is 12.
What is I miss or it have another way to join 2 32 int into 1

