Q28: Recursion

Take out a piece of paper and put your name on the upper right corner.

static void printStuff(int level) {
      if (level == 0) {
         System.out.print("=");
      }
      else {
         System.out.print("(");
         printStuff(level - 1);
         System.out.print(",");
         printStuff(level - 1);
         System.out.print(")");
      }
  }

Finish your answer before the timer runs out.