1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
| import java.io.*; import java.math.BigDecimal; import java.math.BigInteger; import java.util.StringTokenizer;
public class Main { static InputReader cin = new InputReader(); static PrintWriter cout = new PrintWriter(new OutputStreamWriter(System.out)); public static void main(String[] args) throws Exception {
int a = cin.nextInt(); cout.println(a); cout.close(); }
static class InputReader{ private StringTokenizer st; private BufferedReader bf;
public InputReader() { bf = new BufferedReader(new InputStreamReader(System.in)); st = null; }
public String next() throws IOException{ while(st == null || !st.hasMoreTokens()) { st = new StringTokenizer(bf.readLine()); } return st.nextToken(); }
public String nextLine() throws IOException{ return bf.readLine(); }
public int nextInt() throws IOException{ return Integer.parseInt(next()); }
public long nextLong() throws IOException{ return Long.parseLong(next()); }
public double nextDouble() throws IOException{ return Double.parseDouble(next()); }
public BigInteger nextBigInteger() throws IOException{ return new BigInteger(next()); }
public BigDecimal nextBigDecimal() throws IOException{ return new BigDecimal(next()); } } }
|