!7 p { check(0, "abc", "ABC"); check(0, "abc", "ABC"); check(1, "abd", "ABC"); check(-1, "abb", "ABC"); print("OK"); } svoid check(int x, S a, S b) { if (compareIgnoreCase_lower(a, b) != x) fail(a + " / " + b); if (compareIgnoreCase_lower(b, a) != -x) fail(b + " / " + a); }