public class AssertTest
{
  public static void main(String args[])
  {
    int test = 0;
    try
      {
	assert test == 0;
	assert test == 1 : "test is 0, not 1";
      }
    catch (AssertionError error)
      {
	System.out.println(error);
      }
  }
}