//  WelcomeJOptionPaneApplication.java
//  Prints a single line of text in a JOptionPane dialog box
import javax.swing.*;	// necessary to import swing

public class WelcomeJOptionPaneApplication {
	public static void main( String args[ ] ) {
		JOptionPane.showMessageDialog( null, "Welcome\nto\nBIS Java" );
		System.exit( 0 );	// terminate the program
	}
}