/*
 * Created on 05-oct-2004
 *
 * TODO To change the template for this generated file go to
 * Window - Preferences - Java - Code Style - Code Templates
 */

/**
 * @author Propietario
 *
 * TODO To change the template for this generated type comment go to
 * Window - Preferences - Java - Code Style - Code Templates
 */
public class Clase
{
	public static void main(String[] args)
	{
		System.out.println("Hello world!");
	}
}

class ClaseAux1
{
	void writeHelloWorld()
	{
		System.out.println("Hello, hello world!");
	}
}

class ClaseAux2
{
	void writeHelloPeople()
	{
		System.out.println("Hello people!");
	}

}


/*
	 	int x=0,y=0,z=0,a=0,b=0,c=0;

	 	y=y+1;
	 	z=z+2;
	 	x=y+z;
	 	System.out.println("x="+x);

	 	b=2*(b+1);
	 	c=3*(c+2);
	 	a=b+c;
	 	System.out.println("a="+a);
 */
