// A simple Java program that prints "Hello, World!" to the monitor.
class Child
{
    public static void main(String[] args)
    {
         System.out.println("Hello, World!");
    }
}