
class Simple extends Item {

  int weight;

  public Simple(String n,int w) {
       super(n);
       weight=w;
  }

  public int check() {
      System.out.println("Simple object "+name+" weighs "+weight);
      return weight;
  }
}

