In an internet quiz, a participant must answer a difficult question. If they do not answer within a certain time, the software shows the first hint, then the second hint, and finally the third hint.
The answer contains only English letters and these characters: . (dot), , (comma), : (colon), ; (semicolon), ! (exclamation mark), ? (question mark), - (dash), and spaces. There are no leading or trailing spaces. A letter is one of a through z or A through Z, and a vowel is one of aeiouAEIOU.
Hints are generated as follows.
. and leaving every non-letter character unchanged.Write a program that prints the three hints for the given answer.
The first and only line contains the correct answer used to generate the hints. The total number of characters is at most 50.
Print the first hint on the first line, the second hint on the second line, and the third hint on the third line.