PROGRAMMING:Base conversion
Enter a decimal integer. Convert it to binary, octal and hexadecimal numbers.
###Input format:
Enter a decimal integer no more than 100.
###Output format:
Output the corresponding binary number, octal number and hexadecimal number in one line, separated by spaces.
###Input example:
Here is a set of inputs. For example:
```in
eight
```
###Output example:
The corresponding output is given here. For example:
```out
1000 10 8
```
answer:If there is no answer, please comment
###Input format:
Enter a decimal integer no more than 100.
###Output format:
Output the corresponding binary number, octal number and hexadecimal number in one line, separated by spaces.
###Input example:
Here is a set of inputs. For example:
```in
eight
```
###Output example:
The corresponding output is given here. For example:
```out
1000 10 8
```
answer:If there is no answer, please comment