public class Ladder
{
  protected int top;
  protected int bottom;

  public Ladder(int b, int t)
  {
    top = t;
    bottom = b;
  }

  public int getTop()
  {
    return top;
  }
 
  public int getBottom()
  {
    return bottom;
  }

  public String toString()
  {
    return "A ladder from " + bottom + " to " + top;
  }
}
