import java.awt.Graphics;

interface Shape {
  public void draw(Graphics g);
}
