class Boot /* extends Object */ {
  double size;
  String color;
  String brand;
  String model;

  public Boot(double s, String c, String b, String m) {
    size = s;
    color = c;
    brand = b;
    model = m;
  }

  /* overrides the toString in the Object class */
  public String toString() {
    return "I'm a " + color + " boot, size " + size;
  }
}
