| Лимит времени 2000/4000/4000/4000 мс. Лимит памяти 65000/65000/65000/65000 Кб. 
 
 Integer to EnglishQuestion:
Write a program that takes an integer and displays the English name of that value.
 Input specification:  
You will be given one integer (positive and negative numbers)
within the range supported by a 32-bit integer 
(approximately ±2 billion).
 Output specification: 
Show the english text of the given number
(all in lowercase).
 
  
Для отправки решений необходимо выполнить вход.
| Sample Inputs | Sample Outputs |  | 
10  121
 -564
 1032
 11043
 1200000000
 
 | 
ten one hundred twenty one
 negative five hundered sixty four
 one thousand thirty two
 eleven thousand forty three
 one billion two hundred million
 
 |  
 
 |