class HelloWorld { public static void main(String[] args) { show(); show(); } static void show() { System.out.println("show"); } }