摘要:
//A.javaimport java.io.*;public class A {static BufferedReader br; public static void main(String[] args) { br = new BufferedReader(new InputStreamReader(System.in)); try { int a = exec1(); int b = exec2(); System.out.println("The total is " + (a + b));... 阅读全文