/*
 * AssignmentZero: This class manages two Robotic Squirrels.  One is a
 * cheap Robotic Squirrel and the other is an advanced Robotic Squirrel.
 *
 * -- A. Bolintineanu, May 2001 (modelled on a program by A. Hunter)
 */

public class AssignmentZero {
	public static void main (String[] args) {

		// --------------------------------------------------------
		// Instantiate a cheap Robotic Squirrel called 'chip'
		
		

		// Make the cheap Robotic Squirrel pick 5 hazelnuts
		
		

		// Extract 3 hazelnuts out of the cheap Robotic Squirrel
		
		

		// Make the cheap Robotic Squirrel pick 2 more hazelnuts
		
		

		// Extract 1 hazelnut out of the cheap Robotic Squirrel
		
		

		// Print the number of hazelnuts in the cheap Robotic Squirrel
		// (Output a statement to indicate what you're printing.)
		
		
		

		// --------------------------------------------------------
		// Instantiate an advanced Robotic Squirrel called 'dale'
		
		

		// Set the price of a hazelnut to 20 Martian cents
		
		

		// Make the advanced Robotic Squirrel pick 15 hazelnuts
		
		

		// Extract 5 hazelnuts out of the advanced Robotic Squirrel
		
		

		// Set the price of a hazelnut to 50 Martian cents
		
		

		// Take 2 hazelnuts out of the advanced Robotic Squirrel
		
		

		// Display information about the advanced Robotic Squirrel
		// (Output a statement to indicate what you're printing.)
		
		

	}
}
