Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
import sys
from blingfire import text_to_words
for l in sys.stdin:
if l.strip():
print(text_to_words(l.strip()))
else:
print('')