PATH by croyal

import java.io.*;\x0d
\x0d
public class Path{\x0d
   public static void main(String[] args){\x0d
      try{\x0d
         BufferedReader in = new BufferedReader(new InputStreamReader(System.in));\x0d
         String[] f = in.readLine().split(":");\x0d
         for(String s : f){\x0d
            System.out.println(s);\x0d
         }\x0d
      }catch(Exception e){}\x0d
   }\x0d
}

Note that non-ascii characters in the above source code will be escaped (such as \x9f).

download

return to the top page