Create a complete python program that accepts input and stores it in two lists
(numbers and strings).

If the line of input is capable of being parsed as an integer save it in the
list called numbers.

Else save it in the list strings.

Remember the significance of the ValueError exception.

Print the numbers list in ascending order.
Print the strings list in ascending order.