class App
{
    public static String hello(String name)
    {
	return "hello " + name;
    }
}
