13587 - To Binary (II)   

Description

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.

Input

A nonnegative decimal integer D.

Output

A binary presentation of D.

Note that you have to print "\n" in the end.

Sample Input  Download

Sample Output  Download

Tags




Discuss