import javax.swing.*;
public class SimpleGUI {

    /* This program illustrates the use of JOptionPane class.
    This class can be sued to display messages and
    get user inputs.
    Aditya Mathur January 8, 2019
     */

    public static void main(String [] args){
        String message="Hi dear!";
        String title="Got it!";
        String question="Enter your password";
        String social="Social Engineering";
        String password=JOptionPane.showInputDialog(null,
                question, social, JOptionPane.QUESTION_MESSAGE);
        JOptionPane.showMessageDialog(null,password, title,
                JOptionPane.INFORMATION_MESSAGE);

    }
}