public class X
{
public Object clone() throws CloneNotSupportedException
{
return super.clone();
}
public static void main(String argv[]) throws CloneNotSupportedException
{
new X().clone();
}
}