Write a program that will identify word that the user inputs and determine how many times that word uses the certain letters, that the word contains. And the letters will be in alphabetical order.
The program must not accept a numeric value and special characters except the "-" that is needed in compound words as input .
Example :
I enter the word "letters"
The program must show:
e = twice
l = once
r = once
s = once
t = twice
If I enter the word "add5@6" with number or special character in the input word
the program will say "Wrong input" and will require the user to input another word.