I want to do this little subtraction (but with bits): $1372 - 9714$
The binary code I found for $1372$ is: $00010101011100$ The binary code I found for $9714$ is: $10010111110010$
Then I added a sign bit $(0)$ for $9714$ and I calculated the two's complement: $101101000001110$
Next, I added this code with the binary code for $1372$ (with an extra sign bit for $1372$) and this resulted in : $101111101101010$ with the first '$1$' as a negative sign bit, this is the binary equivalent of $- 8042$.
What did I do wrong? Do I need to the calculate the two's complement of the result because it is negative?