fork download
  1.  
  2. import java.util.*;
  3. import java.lang.*;
  4. import java.io.*;
  5.  
  6. /* Name of the class has to be "Main" only if the class is public. */
  7. class Sub
  8. {
  9. public static void main (String[] args) throws java.lang.Exception
  10. {
  11. String s = "abcde";
  12. String t = s.substring(2,4);
  13. System.out.println(t);
  14. }
  15. }
Success #stdin #stdout 0.07s 380224KB
stdin
Standard input is empty
stdout
cd