1235368Sgnnpublic class Func_abc {
2235368Sgnn    public static void func_c() {
3235368Sgnn        System.out.println("Function C");
4235368Sgnn        try {
5235368Sgnn            Thread.currentThread().sleep(1000);
6235368Sgnn        } catch (Exception e) { }
7235368Sgnn    }
8235368Sgnn    public static void func_b() {
9235368Sgnn        System.out.println("Function B");
10235368Sgnn        try {
11235368Sgnn            Thread.currentThread().sleep(1000);
12235368Sgnn        } catch (Exception e) { }
13235368Sgnn        func_c();
14235368Sgnn    }
15235368Sgnn    public static void func_a() {
16235368Sgnn        System.out.println("Function A");
17235368Sgnn        try {
18235368Sgnn            Thread.currentThread().sleep(1000);
19235368Sgnn        } catch (Exception e) { }
20235368Sgnn        func_b();
21235368Sgnn    }
22235368Sgnn
23235368Sgnn    public static void main(String[] args) {
24235368Sgnn        func_a();
25235368Sgnn    }
26235368Sgnn}
27