public static void Main()
Shape a = new Shape("green");
circle b =new circle(7,"blue");
Rectangle c = new Rectangle(7,5,"purple");
Console.WriteLine("this is a shape");
internal class circle :Shape
public circle(int radius, String color) : base(color)
Console.WriteLine("This is a circle with a radof "+radius+" from the shaqpe class");
internal class Rectangle :Shape
public Rectangle(int length, int width, string color) : base(color)
Console.WriteLine("This is a rectangle with Length"+length+" and width"+width+" from theshpaeclass");