class brother
{
brother()
{
System.out.println("Hai sister!! did you call me ?");
}
}
class sister extends brother
{
sister()
{
super(); //Hear super is used to call constructor of super class
}
}
class one
{
public static void main(String args[])
{
sister object = new sister();
}
}













