/*
 * SquirrelSapiens: This class models an advanced Robotic Squirrel.
 */

class SquirrelSapiens {

	// price of one hazelnut (in Martian cents)
	private int hazelnutPrice = 0; 	

	// number of hazelnuts currently in reservoir
	private int numHazelnuts = 0;	

	// value of the hazelnuts currently in reservoir (in Martian cents)
	private int totalValue = 0;

	/*
	 * extract: 'numToExtract' hazelnuts are extracted 
	 * from the reservoir.
	 */
	
		
		
	

	/*
	 * report: print the cost of one hazelnut, the number of hazelnuts
	 *    currently in the reservoir, and the value of the hazelnuts
	 *    currently in the reservoir.
	 */
	
		
		
	

	/*
	 * pick: pick 'numToPick' hazelnuts off the tree
	 * and add them to the reservoir.
	 */
	public void pick (int numToPick) {
		
		
	}

	/*
	 * setHazelnutPrice: set the price of a hazelnut to 'newPrice'.
	 * newPrice represents the new price of a hazelnut, in Martian cents.
	 */
	public void setHazelnutPrice (int newPrice) {
		
		
	}
}
