fork(2) download
  1. import java.util.*;
  2. import java.lang.*;
  3.  
  4. class Main
  5. {
  6. public static void main (String[] args) throws java.lang.Exception
  7. {
  8. System.out.println("20".split (" ").length);
  9. System.out.println("20 30".split (" ").length);
  10.  
  11. }
  12. }
Success #stdin #stdout 0.06s 215488KB
stdin
Standard input is empty
stdout
1
2