package s.b; public class s { void show() { System.out.println("yyyy"); } public static void main(String args[]) { s S = new s(); S.show(); } }
import s.b.*; public class main { public static void main(String args[]) { s S = new s(); S.show(); } }