public abstract class Shape {
public abstract double getArea();
public abstract String getShapeName();
}