fork download
  1. import java.util.*;
  2. import java.lang.*;
  3. import java.io.*;
  4.  
  5.  
  6. class Ideone
  7. {
  8. static boolean[] visit;
  9. static ArrayList<ArrayList<Integer>> graph = new ArrayList<ArrayList<Integer>>();
  10. static int t1;
  11.  
  12. /*
  13. private void dfs(){
  14.  
  15. }
  16. */
  17.  
  18. public static void main (String[] args) throws java.lang.Exception
  19. {
  20. StringTokenizer st = new StringTokenizer(br.readLine());
  21.  
  22.  
  23. t1 = Integer.parseInt(st.nextToken());
  24. visit = new boolean[t1];
  25.  
  26.  
  27.  
  28. System.out.println(t1);
  29. }
  30. }
Success #stdin #stdout 0.08s 52824KB
stdin
4
stdout
4