public class Main {

    public static void main(String[] args) {
	// write your code here
        for (char c = 'A'; c <= 'z'; c++) {
            System.out.println(Character.toString(c) + ": " + Character.toString(c).matches("[A-Za-z&&[b-e]]"));
        }
    }
}
