public class TreeTest {

    public static void main(String[] args) {

	int a = Integer.parseInt(args[0]);
	int b = Integer.parseInt(args[1]);

	GreatTree treeA = new GreatTree(a, b);
	treeA.makeTree();
	treeA.makeGround();

    }

}
