/*
   Author:
   Description:

   print

    Hello!  My name is ...

*/


import java.io.*;

public class Hello  
{
    public static void main(String[] argv)
    {

	System.out.println("this goes to the screen");  // template for screen output
    }
}
