13561 - To Binary   

Description

Given a decimal number, please convert it to a 4-digit binary representation.

For example, given 9, please print 1001; given 3, please print 0011.

binary

Input

A decimal integer D (0<= D <= 15).

Output

B, the 4-digit binary representation of D.

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

Sample Input  Download

Sample Output  Download

Tags




Discuss