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