()
| 51 | } |
| 52 | |
| 53 | void run() throws Exception |
| 54 | { |
| 55 | is = INPUT.isEmpty() ? System.in : new ByteArrayInputStream(INPUT.getBytes()); |
| 56 | out = new PrintWriter(System.out); |
| 57 | |
| 58 | long s = System.currentTimeMillis(); |
| 59 | solve(); |
| 60 | out.flush(); |
| 61 | if(!INPUT.isEmpty())tr(System.currentTimeMillis()-s+"ms"); |
| 62 | } |
| 63 | |
| 64 | public static void main(String[] args) throws Exception { new A().run(); } |
| 65 |