import java.util.InputMismatchException;
import java.util.Scanner;
import java.util.StringTokenizer;
public class HelloWorld {
public static void main(String[] args) throws Exception {
// int[] a = new int[5];
//
// try {
// System.out.println(5 / 0);
// } catch (IndexOutOfBoundsException b) {
// System.out.println("this is indexoutofboundException");
// } catch (ArithmeticException c) {
// System.out.println("this is ArithmeticException");
// } finally {
// System.out.println("Good");
// }
// static Scanner sc = new Scanner(System.in);
//
// int a;
//
// try {
// first(10, 5);
// } catch (ArithmeticException e) {
// System.out.println("ArithmeticException");
// } catch (InputMismatchException e) {
// System.out.println("InputMismatchException");
// }
// }
//
// static int first(int a, int b) throws Exception {
// System.out.println(a / b);
// return a / b;
// }
// String a = "mega coffee";
// String[] b = new String[]{"m", "e", "g", "a", "c", "o", "f", "f", "e", "e"};
// String c = new String();
// System.out.println(a.toUpperCase());
//
// for (int i = 0; i < a.length() - 1; i++) {
//
// }
//
// for (int i = 0; i < a.length() - 1; i++){
// c += i % 2 == 0 ? b[i].toUpperCase() : b[i].toLowerCase();
// } System.out.println(c);
//
// Scanner sc = new Scanner(System.in);
// String word;
// word = sc.next();
//
// int wordCount = 0;
//
// for (int i = 0; i < a.length() - 1; i++) {
// if (b[i].indexOf(word) == 0) {
// wordCount += 1;
// }
// } System.out.println(wordCount);
// String date = "ad/b";
// StringTokenizer st = new StringTokenizer(date, "/", "d");
//
// while(st.hasMoreTokens()){
// System.out.println(st.nextToken());
// }
String alphabet = "abcdefghijklmnopqrstuvwxyz";
String[] collection = new String[]{"a", "e", "i", "o", "u"};
for (int i = 0; i < collection.length - 1; i++) {
StringTokenizer b = new StringTokenizer(alphabet, collection[i]);
}
// 알파벳 랜덤 보여주기
// 모음 기준으로 토크나이저
}
}