/* PERMITTED COMMANDS
move, turnLeft, turnRight, treeLeft, treeRight, treeFront, onLeaf, putLeaf, removeLeaf, mushroomFront
JAVA
if, while, for
*/
class MyClara extends Clara {
void run() {
// we move until we reach to the leaf
while (!onLeaf()) {
if (treeRight() && !treeFront()) {
move();
continue;
}
if (!treeRight()) {
turnRight();
move();
continue;