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')