
public abstract class Shape implements Showable {
	
	int x, y;
	
	abstract public double area();

}

