
public class Pumpkin {
	private int weight;
	
	public Pumpkin(int w) {
		weight = w;
	}

}
