competitive programming scripts on Linux
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
572 B

3 years ago
  1. import java.io.*;
  2. import java.util.*;
  3. public class Main {
  4. static BufferedReader in;
  5. static PrintWriter out;
  6. static StringTokenizer st;
  7. public static void main(String[] args) throws IOException {
  8. in = new BufferedReader(new InputStreamReader(System.in));
  9. out = new PrintWriter(System.out);
  10. new solver();
  11. out.close();
  12. }
  13. static void line() throws IOException {
  14. st = new StringTokenizer(in.readLine());
  15. }
  16. static class solver {
  17. solver() throws IOException {
  18. line();
  19. }
  20. }
  21. }