// HelloTwoNames.java

import java.applet.*;
import java.awt.*;

// This is the Hello Name program in Java

class HelloTwoNames {

  public static void main (String args[]) {
      
    String name;     //Declare the variable name to be a String

    name = "Beth";  

    /* Say hello to Beth*/
    System.out.println("Hello " + name);

    /* Say hello to Rusty */
    name = "Rusty";
    System.out.println("Hello " + name);

  }

}

