PROGRAMMING:Decimal to hexadecimal
####Task description
```
Program output decimal non negative integer into hexadecimal number results.
```
####Input format:
```
There are several non negative integers, each of which represents a group of data and does not exceed the range of int data. The data are separated by spaces or carriage returns.
```
####Output format:
```
The hexadecimal sequence of each group of data is output in turn, and each output result occupies a single line, and the output alphanumeric is capitalized.
```
####Input example:
```in
25 36 0 1 1024
268435456 174 123
```
####Output example:
```out
nineteen
twenty-four
0
one
four hundred
ten million
AE
7B
```
answer:If there is no answer, please comment
```
Program output decimal non negative integer into hexadecimal number results.
```
####Input format:
```
There are several non negative integers, each of which represents a group of data and does not exceed the range of int data. The data are separated by spaces or carriage returns.
```
####Output format:
```
The hexadecimal sequence of each group of data is output in turn, and each output result occupies a single line, and the output alphanumeric is capitalized.
```
####Input example:
```in
25 36 0 1 1024
268435456 174 123
```
####Output example:
```out
nineteen
twenty-four
0
one
four hundred
ten million
AE
7B
```
answer:If there is no answer, please comment