public class WardrobeDemo {
  public static void main(String[] args) {
    Wardrobe wardrobe = new Wardrobe(new String[] {"scarf", "jacket"});
    System.out.println(wardrobe.checkInventory(Integer.parseInt(args[0])));
  }
}
