Write a function that accepts a positive integer between 0 and 999 inclusive and returns a string representation of that integer written in English.
numToEng(0) ➞ "zero"
numToEng(18) ➞ "eighteen"
numToEng(126) ➞ "one hundred twenty six"
numToEng(909) ➞ "nine hundred nine"