- Convert a given number into its english representation.
- Handle numbers from 0-99
x = 67
tens_digit = x // 10
ones_digit = x % 10
Hint 2: use the digit as an index for a list of strings OR as a key for a dict of digit:phrase pairs.
- Handle numbers from 100-999.
- Convert a number to roman numerals.
- Convert a time given in hours and minutes to a phrase.