It says, too big of an output, what's the deal with it?
public int step; //-<deleted static and it turns into infinite loop

   public static void main(String[] args) {
       method1();
   }

   public static void method1() {
       method2();
   }

   public static void method2() {
       new Solution().method3();
   }