Roger is an Aurdino hobbyist. He is working on building a wireless garage remote. The garage opener unit is configured to receive a secret 5 digit binary code from the wireless remote unit. If code transmitted by the garage remote is correct and it matches the one stored in the garage opener unit, the garage opener unit will open the garage else it will ignore the request.

Remote Transmitter --->  Wireless Transmission of 5 digit code as Binary Data ---> Garage Opener receives the binary data 

Garage Opener verifies the code --> If a match, open the garage door else ignore the request.

Program

Write a program that will be burnt into the garage remote unit so that on press it can transmit the build in 5 digit code as a binary stream wirelessly.

Input

  • Input 5 digit code.

Output 

  • Binary represent of the 5 digit code.

Test cases

No
Input (D)
(Decimal Code)
Output (B)
(Binary Code)
1
28371
110111011010011
2
83721
10100011100001001
3
19292
100101101011100

Instructions 

  • Accept the 5 digit code (D) as input via the command line arguments.
  • Write the logic to convert 5 digit decimal code in the remote to binary code(B) for transmission.
  • Print out the output binary code.