public class Circle extends Shape {

    void draw() {

	/* Code to draw a circle */

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

}