Integer to English Words

Convert a non-negative integer number's to its English words representation.  for example 100 it is non negative number convert into English words "One hundred"
        
       Input:-123
       Input Description: The first and only line of input contains the Non negative integer 
       Output: One Hundred Twenty Three
       Output Description: return English words 
       Constraints: 0 <= num <= 231 - 1
       Explanation: null

Loading...