public static string LetterChanges(string str) {
string alphabets = "abcdefghijklmnopqrstuvwxyz";
for (int j = 0; j < str.Length; j++)
for (int i = 0; i < alphabets.Length; i++)
if (str[j] == alphabets[i])
if (i == alphabets.Length - 1)
upgradeStr += ConfirmVowel(alphabets[0], vowels);
upgradeStr += ConfirmVowel(alphabets[i+1], vowels);
public static char ConfirmVowel(char car, string vowels)
int countVowel = vowels.IndexOf(car);
car = car.ToString().ToUpper().ToCharArray()[0];
public static void Main() {
Console.WriteLine(LetterChanges(Console.ReadLine()));