package section3; import javax.swing.JOptionPane; public class Helloworld { public static void main(String[] args) { String Nom= "Welcome"; JOptionPane.showMessageDialog(null,"MEOW COW"); String name=JOptionPane.showInputDialog("Enteryour name"); JOptionPane.showMessageDialog(null, "You have entered " + name); } }