#K91902. Base64 Decoder

    ID: 38078 Type: Default 1000ms 256MiB

Base64 Decoder

Base64 Decoder

In this problem, you are given a string that has been encoded in Base64. Your task is to decode the string to retrieve the original binary data, and then output the decimal value of each byte separated by a single space.

If the input string is empty, your program should not produce any output.

Details:

  • The input is a single line containing the Base64 encoded string.
  • The output should be a single line listing the decimal values of the decoded bytes, separated by a single space.

For example, if the input is SGVsbG8=, the output should be 72 101 108 108 111 since 'Hello' has the ASCII codes 72, 101, 108, 108, 111.

inputFormat

The input consists of a single line containing a Base64 encoded string.

outputFormat

Output a single line containing the decimal values of the decoded bytes separated by a single space. If the input is empty, no output should be produced.

## sample
SGVsbG8=
72 101 108 108 111