
import java.util.Scanner;

public class Question18
{
    public static void main(String[] args)
    {
		CrazyException exceptionObject = new CrazyException( );
		System.out.println(exceptionObject.getMessage( ));
		exceptionObject.crazyMethod( );
    }
}
