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

import java.io.*;
import java.util.*;
public class Main {
static BufferedReader in;
static PrintWriter out;
static StringTokenizer st;
public static void main(String[] args) throws IOException {
in = new BufferedReader(new InputStreamReader(System.in));
out = new PrintWriter(System.out);
new solver();
out.close();
}
static void line() throws IOException {
st = new StringTokenizer(in.readLine());
}
static class solver {
solver() throws IOException {
line();
}
}
}