public class College
{
public College()
{
System.out.println("java");
}
public College(int a)
{
this();
this();
}
public static void main(String...k)
{
College c=new College(10);
}
}

Posted on by