public static void Main()
Console.WriteLine("Can you please enter a word any word");
string word = Console.ReadLine();
for(int x = 0; x < word.Length; x++){
ascii = Convert.ToChar(word[x]);
if(ascii == 97 || ascii == 65)
else if(ascii == 101 || ascii == 69)
else if(ascii == 105 || ascii == 73)
else if(ascii == 111 || ascii == 79)
else if(ascii == 117 || ascii == 85)
vowels = avowels + evowels + ivowels + ovowels + uvowels;
int consonants = word.Length - vowels;
Console.WriteLine("Your word has " + vowels + " vowel and it has " + consonants + " consonants");
Console.WriteLine("Would you like a sum of all the individual vowels?");
string ans = Console.ReadLine();
if(ans == "yes" || ans == "YES" || ans == "Yes")
Console.WriteLine("Your word has "
+ avowels + " letter 'a'/'as', "
+ evowels + " letter 'e'/'es', "
+ ivowels + " letter 'i'/'is', "
+ ovowels + " letter 'o'/'os', "
+ uvowels + " letter 'u'/'us', ");
Console.WriteLine("Well then that's that then innit g");