public static string LetterChanges(string str) {
string strLower = str.ToLower();
StringBuilder sb = new StringBuilder();
for(int i= 0; i<=strLower.Length-1; i++)
if ((!(j >= 'A' && j <= 'Z') && !(j >= 'a' && j <= 'z')) || (j >= '0' && j <= '9'))
if(x == 'a' || x == 'e' || x == 'i' || x == 'o' || x == 'u')
public static void Main() {
Console.WriteLine(LetterChanges(Console.ReadLine()));