// untitled3.java

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

class HelloName {

  public static void main (String args[]) {

    //Declare the variable name to be a String
    String name;

    // Replace "Rusty" with your own name    
    name = "Rusty";  

    /* Now let's say hello */
    System.out.println("Hello " + name);

  }

}

