public static void Test()
        {
            Solution s = new Solution();

            int labe1 = 14;

            s.PathInZigZagTree(labe1).PrintList();

            labe1 = 13;
            s.PathInZigZagTree(labe1).PrintList();
            labe1 = 10;
            s.PathInZigZagTree(labe1).PrintList();


            int labe2 = 26;

            s.PathInZigZagTree(labe2).PrintList();
        }