class J03E07A { public static void main(String[] args) { int x; x = 65; while(x < 70) { System.out.println(x + " " + (char)x); x = x + 1; } } }