Print Binary And Reverse Bits
easy
1. You are given a number. 2. You have to print its binary representation. 3. You also have to reverse the bits of n and print the number obtained after reversing the bits.
Constraints
1 <= n <= 10^9
Format
Input
A number n
Output
Check the sample ouput and question video.
Example
Sample Input
11
Sample Output
1011
13
Question Video