
import javax.swing.*;

public class ExerciseEchoNumber
{
   public static void main(String[] args)
   {
      String numberString;
      numberString =
      JOptionPane.showInputDialog("Enter a whole number:");
      JOptionPane.showMessageDialog(
         null, "The number is " + numberString);
      System.exit(0);
   }
}
