1N/Apublic class Func_abc {
1N/A public static void func_c() {
1N/A System.out.println("Function C");
1N/A try {
1N/A Thread.currentThread().sleep(1000);
1N/A } catch (Exception e) { }
1N/A }
1N/A public static void func_b() {
1N/A System.out.println("Function B");
1N/A try {
1N/A Thread.currentThread().sleep(1000);
1N/A } catch (Exception e) { }
1N/A func_c();
1N/A }
1N/A public static void func_a() {
1N/A System.out.println("Function A");
1N/A try {
1N/A Thread.currentThread().sleep(1000);
1N/A } catch (Exception e) { }
1N/A func_b();
1N/A }
1N/A
1N/A public static void main(String[] args) {
1N/A func_a();
1N/A }
1N/A}