public class Square extends Shape {

    void draw() {
 
   	/* Code to draw a square */

	System.out.println("Drawing a Square");
    }
    
}