52. Password Decryption 1

Time Limit: 1 seconds

Memory Limit: 128 MB

Rating: 1000

Problem Statement

Find the binary equivalent of a given string of hex, input $n$. Print the binary equivalent as a single string.

Input

A single long string of hex $n$ = string of hex codes, $0 \le length \le 100$

Output

A single converted string consisting of only 0s and 1s

Sample Cases
Sample Input 0:
FFFFFF

Sample Output 0:
111111111111111111111111
Explanation

Not available for this problem.

Sources

KL Coding Cup October 2024 > Problem 4

Submit | Back