package test;

public class test
{
	public test()
	{
		Runtime.getRuntime().addShutdownHook(new Thread()
		{
			public void run()
			{
				System.out.println("Stopping");
			}
		});
	}

	public static void main(String[] args) throws Exception
	{
		System.out.println("Started...");
		new test();
		Thread.sleep(Long.MAX_VALUE);
	}
}
