Given a nonnegative decimal number, please convert it to a binary representation.
For example, given 3, please print 11; given 16, please print 10000.
Hint:
We need 31 bit to represent all the nonnegative integer.
A nonnegative decimal integer D.
A binary presentation of D.
Note that you have to print "\n" in the end.