class Demo { void show() { System.out.println("hi"); } void show(int x) { System.out.println("welcome"); } void show(int x,int y) { System.out.println("java"); } } class Main { public static void main(String args[]) { Demo d=new Demo(); d.show(); d.show(10); d.show(10,20); } }
hi
welcome
java