public class Solution {
    public static void main(String[] args) throws Exception {
        //напиш
        for(int a = 0; a < 10; a++) {
            for(int b = 1; b<=a; b++) {
                System.out.print(8);
            }
            System.out.println(8);
        }

    }
}
кто может объяснить что происходит в цикле