/**
 * a method to print hello 
 *
 */

public class Hello
{
    /**
     * main method 
     */

    public static void main (String[ ] args)
    {        
        String name1 = "Sam Sultan";
        hello(name1);
        
        String name2 = "Michey Mouse";
        hello(name2);

        hello("Donald Duck");
    }


    /**
     * A method to print Hello name
     */

    static void hello(String name)              //get name from the main method
    {
        String greeting;                        //create a local variable
    
        greeting = "Hello " + name;             //concatenate hello to the name     

        System.out.println(greeting);           //print it
    }
}