import re t = int(input()) r = re.compile('ooo|oo-|-oo|-o--|--o-|o-(--)*o') for _ in range(t): print('O' if r.search(input().split()[1]) else 'X')