public class Halting
	{
	public static boolean opposite (String a, String b)
		{
		return !Helper.mysteryFunction(a, b);
		}

	public static boolean repeater (String s)
		{
		if (!Helper.mysteryFunction(s, s))
			return true;
		Helper.loop();
		return true;
		}
	}

