class Cookie { String type; int weight; Cookie(String type, int weight) { this.type = type; this.weight = weight; } }