The binary representation of number 53 is 0b00110101 and -53 is 11001010.
I used 1's complement of 53 to get the binary value of -53.
But when i try to print those binary number as
print(0b00110101) //53
print(0b11001010) //-53
I get the following output.
53
202
How can i make the compiler return the negative representation of the binary value?