// Helloix.java - Dialog Box input and output

import javax.swing.JOptionPane;


public class Helloix {
	public static void main(String[] args) {
		String name = JOptionPane.showInputDialog("Enter your name:");
		JOptionPane.showMessageDialog(null, "Hello World! Dear " + name);
		System.exit(0);
	}
}
