import javax.swing.JOptionPane;

public class Exercise2C {

  public static void main(String args[]) {
    String stringRead = JOptionPane.showInputDialog("Insert a string:");
    String upper = stringRead.toUpperCase();
    String lower = stringRead.toLowerCase();
    System.out.println("The result is " +  upper + lower);
    System.exit(0);
  }
}
