/*****************************************************************
** CountVowels
**
** (c) Scott MacKenzie, 2000                             
******************************************************************/
import java.io.*;

public class CountVowels
{
   public static void main(String[] args) throws IOException
   {
      BufferedReader stdin =
         new BufferedReader(new InputStreamReader(System.in), 1);

      int aCount = 0;
      int eCount = 0;
      int iCount = 0;
      int oCount = 0;
      int uCount = 0;
      int totalCount = 0;

      // read lines from stdin, count occurrences of vowels, letters
      String line;
      while ((line = stdin.readLine()) != null)
      {
         // increment count for total number of characters
         totalCount += line.length();

         // increment vowel counts, as appropriate
         for (int i = 0; i < line.length(); ++i)
         {            
            if (line.charAt(i) == 'a') ++aCount;
            if (line.charAt(i) == 'e') ++eCount;
            if (line.charAt(i) == 'i') ++iCount;
            if (line.charAt(i) == 'o') ++oCount;
            if (line.charAt(i) == 'u') ++uCount;
         }
      }

      // output results
      System.out.println();
      System.out.println("*****************************");
      System.out.println("* ITEC 1011 M - Winter 2001 *");
      System.out.println("* Assignment #6             *");
      System.out.println("* Name: Scott MacKenzie     *");
      System.out.println("* Student Number: 123456789 *");
      System.out.println("*****************************");
      System.out.println("Total number of characters = " + totalCount);
      System.out.println("Number of vowels...");
      System.out.println("a = " + aCount);
      System.out.println("e = " + eCount);
      System.out.println("i = " + iCount);
      System.out.println("o = " + oCount);
      System.out.println("u = " + uCount);
   }
}

