First write out 47 twice, (you like Agent 47, right?), keeping spaces as shown (each dash is a slot for a single digit. First 2 slots, then 4)
--47----47
Think you have 12
in hand (because 12 = a dozen). Multiply it by 4
, first digit of Agent 47's number, i.e. 47
, and place the result to the right of first pair you already have
12 * 4 = 48
--4748--47 <-- after placing 48 to the right of first 47
Then multiply 12
by 3
(in order to make second digit of Agent 47's number, which is 7
, you need 7 - 4 = 3
) and put the result to the right of the first 2 pairs, the last pair-slot
12 * 3 = 36
--47483647 <-- after placing 36 to the right of first two pairs
Finally drag digits one by one from your hand starting from right-most digit (2 in this case) and place them in the first empty slot you get
2-47483647 <-- after placing 2
2147483647 <-- after placing 1
There you have it! For negative limit, you can think of that as 1 more in absolute value than the positive limit.
Practise a few times, and you will get the hang of it!