public class main {
	public static void main(String argv[]) {
		
		int board[] [] = new int [10][10];
		
		Grasshopper g = new Grasshopper();
		Cricket c = new Cricket();
		
		g.Hop(1,1);
		g.Eat();
		g.Mate();
		
		c.Hop(1,1);
		c.Eat();
		c.Mate();
		
	}
}