str = %w(ooo oo- -oo o-o -o-- --o-) gets.to_i.times do n, s = gets.split puts str.any?{|t| s.include?(t)} ? "O" : "X" end