//Parent.java package pack_01; class Parent{ public static void main(String[] args){ Child_A.say(); Child_B.say(); } }