Menu entry
Write a program that will present a menu with many options (up to 10). The user can then enter, on a single input, the options that they wish from the menu separated by spaces or a comma. Menu options can either be numeric or alphabetic. Once the user hits the enter key, your program will then show them which options they selected, one per line.
Example:
If the user enters 1,2,3,4
Your output would be
1
2
3
4



