from numpy import sign n = int(input()) for _ in range(n): a, b = map(int, input().split()) print(chr(61 + sign(a - b)))