76 lines
1.6 KiB
Java
76 lines
1.6 KiB
Java
import java.util.*;
|
|
import java.io.*;
|
|
import java.math.*;
|
|
|
|
public class FileIOBuffered {
|
|
|
|
static final String INPUT_FILE = "problem.in"; // ← change to problem name
|
|
static final String OUTPUT_FILE = "problem.out"; // ← change to problem name
|
|
|
|
static BufferedReader br;
|
|
static PrintWriter pw;
|
|
static StringTokenizer st;
|
|
|
|
public static void main(String[] args) throws IOException {
|
|
br = new BufferedReader(new FileReader(INPUT_FILE));
|
|
pw = new PrintWriter(new BufferedWriter(new FileWriter(OUTPUT_FILE)));
|
|
|
|
// Write code here
|
|
int t = nextInt();
|
|
print(t);
|
|
|
|
pw.flush();
|
|
pw.close();
|
|
}
|
|
|
|
// Helper Functions
|
|
|
|
static String next() throws IOException {
|
|
while (st == null || !st.hasMoreTokens())
|
|
st = new StringTokenizer(br.readLine());
|
|
return st.nextToken();
|
|
}
|
|
|
|
static int nextInt() throws IOException {
|
|
return Integer.parseInt(next());
|
|
}
|
|
|
|
static long nextLong() throws IOException {
|
|
return Long.parseLong(next());
|
|
}
|
|
|
|
static double nextDouble() throws IOException {
|
|
return Double.parseDouble(next());
|
|
}
|
|
|
|
static String nextLine() throws IOException {
|
|
return br.readLine();
|
|
}
|
|
|
|
static int[] readIntArray(int n) throws IOException {
|
|
int[] a = new int[n];
|
|
for (int i = 0; i < n; i++)
|
|
a[i] = nextInt();
|
|
return a;
|
|
}
|
|
|
|
static long[] readLongArray(int n) throws IOException {
|
|
long[] a = new long[n];
|
|
for (int i = 0; i < n; i++)
|
|
a[i] = nextLong();
|
|
return a;
|
|
}
|
|
|
|
static void println(Object o) {
|
|
pw.println(o);
|
|
}
|
|
|
|
static void print(Object o) {
|
|
pw.print(o);
|
|
}
|
|
|
|
static void printf(String fmt, Object... args) {
|
|
pw.printf(fmt, args);
|
|
}
|
|
}
|