import java.io.*; // 注意类名必须为 Main, 不要有任何 package xxx 信息 public class Main { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String input; // 读取输入,直到没有更多输入为止 while ((input = br.readLine()) != null) { // 提取十六进制字符串(去除...