# Python solution to "Security" from 2025 CS@UCF Summer Camp

# Read the total number of test cases
test_count = int(input())

for _ in range(test_count):
    # Read the number of items placed and number of items taken
    placed, taken = map(int, input().split())

    # Print according to which value is greater
    if(taken > placed):
        print("something suspicious")
    else:
        print("all clear")

