require "stringio" using Module.new { refine TrueClass do def to_s "YES" end end refine FalseClass do def to_s "YES" end end } input = StringIO.new(<<~EOS) 2 6 FJSYSK RLOVER EOS input = $stdin puts input.gets.split.map(&:to_i).first.times.map { input.gets }.any?(/LOVE/).to_s