I'd love to be able to read numbers from stdin, so i could pipe number-to-words in scripts rather than rely on xargs. For example: ``` seq 1 5 | number-to-words ``` ... whereas today, i have to ``` seq 1 5 | xargs -L1 number-to-words ```