class Main {
public static void main(String[] args) {
System.out.println(java.net.URI.create("x/.").getPath());
System.out.println(java.net.URI.create("x/.").normalize().getPath());
System.out.println();
System.out.println(java.net.URI.create("x/y/..").getPath());
System.out.println(java.net.URI.create("x/y/..").normalize().getPath());
System.out.println();
}
}
To embed this program on your website, copy the following code and paste it into your website's HTML: