class J03E07B { public static void main(String[] args) { char c; c = 'A'; while(c < 'F') { System.out.println((int)c + " " + c); c = c + 1; } } }