/*
 * =========================================
 * Peace.java: My first java program ....
 * =========================================
 */

public class Peace {
    public static void main ( String args[]  ) {

        // This is my first line ...

        System.out.println( "*** Peace on Earth" + " and the Moon");

	// This is my second line ...

        System.out.println( "*** Peace on Earth2 !!" );
    }
}