Java
import java.util.*;
import java.io.*;
public class Main {
static Scanner sc = new Scanner(new InputStreamReader(System.in));
static BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
static StreamTokenizer st=new StreamTokenizer(br);
static PrintWriter pw=new PrintWriter(new OutputStreamWriter(System.out));
public static int nextInt() throws Exception{
st.nextToken();
return (int)st.nval;
}
public static long nextLong() throws Exception{
st.nextToken();
return (long)st.nval;
}
public static double nextDouble() throws Exception{
st.nextToken();
return st.nval;
}
//public static String next() throws Exception{
// st.nextToken();
// return st.sval;
//}
public static String nextLine() throws Exception{
return br.readLine();
}
public static void main(String[] args) throws Exception {
// System.out.println(Integer.MAX_VALUE); 2147483647
// System.out.println(Integer.MIN_VALUE); -2147483648
// System.out.println(Double.MAX_VALUE); 1.7976931348623157E308
// System.out.println(Double.MIN_VALUE); 4.9E-324
// System.out.println(Long.MAX_VALUE); 9223372036854775807
// System.out.println(Long.MIN_VALUE); -9223372036854775808
pw.flush();
pw.close();
br.close();
sc.close();
}
}
C++
#include<bits/stdc++.h>
using namespace std;
int main(){
return 0;
}