PROGRAMMING:Know integer 2
###Task description
This topic requires reading in a 10 base positive integer, and then output in the form of 8 base and 16 base respectively. When outputting, add the prefix 0 or 0x to indicate the hexadecimal system. When outputting data in hexadecimal system, all alphanumeric characters are capitalized.
###Input format:
Input only one line, 1 decimal positive integer.
###Output format:
Output two values in a row, separated by a space.
###Input example:
```in
one hundred and twenty-seven
```
###Output example:
```out
0177 0X7F
```
###Tips
The method of outputting the prefix 0 of 8-ary number is to use% # o, and the method of outputting the prefix X of 16-ary number is to use% # X. In addition, the% x format makes the hexadecimal alphanumeric output in lowercase form;% x format makes the hexadecimal alphanumeric output in lowercase form The X format makes the hexadecimal alphanumeric output in uppercase.
answer:If there is no answer, please comment
This topic requires reading in a 10 base positive integer, and then output in the form of 8 base and 16 base respectively. When outputting, add the prefix 0 or 0x to indicate the hexadecimal system. When outputting data in hexadecimal system, all alphanumeric characters are capitalized.
###Input format:
Input only one line, 1 decimal positive integer.
###Output format:
Output two values in a row, separated by a space.
###Input example:
```in
one hundred and twenty-seven
```
###Output example:
```out
0177 0X7F
```
###Tips
The method of outputting the prefix 0 of 8-ary number is to use% # o, and the method of outputting the prefix X of 16-ary number is to use% # X. In addition, the% x format makes the hexadecimal alphanumeric output in lowercase form;% x format makes the hexadecimal alphanumeric output in lowercase form The X format makes the hexadecimal alphanumeric output in uppercase.
answer:If there is no answer, please comment