public interface Polygon {

//this is an interface which requires the following methods:

  public int area();
  public int perimeter();

}
