Preview:
class Sample 
{ 
void name() 
{ 
System.out.println("I am Sai");
} 
} 
class Task19 extends Sample 
{ 
void name() 
{ 
super.name();
System.out.println("This is Siva");
} 
public static void main(String[] args) 
{ 
Task19 t=new Task19();
t.name();
} 
}
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter