abstract class Item {

  String name;

  public Item(String n) {
      name=n;
  }

  public abstract int check();
}

