We’re preparing your current view and syncing the latest data.
Given a string, perform the following operations:
Output the resulting string after these transformations.
A single line containing a non-empty string of uppercase and lowercase Latin letters.
Output the transformed string after applying the described operations.
The length of the string is at least 1 and at most 100.
Example 1
Input
Tour
Output
.t.r
Explanation
Convert "Tour" to lowercase: "tour". Remove vowels: 'o' and 'u' are vowels. Remaining: 't' and 'r'. Prefix each with '.': ".t.r".