/**
 * Demo file, it may not be correct and/or complete.  
 * Please watch the corresponding lecture(s) for more explanations.
 * 
 * @author ashesh
 */

package TestPackage2;

import Shapes.*;
//import ShapesInterface.*;

public class A extends Circle {

	public A(){
		r = 89;
		// x = 12; 
		p = 76; 

	}
	
}
