using System; namespace yukicoder { class Program { static void Main(string[] args) { string[] s = Console.ReadLine().Split(' '); int a = int.Parse(s[0]); bool f = false; for(int i = 0; i < a; i++) { string s1 = Console.ReadLine(); if (s1.IndexOf("LOVE") != -1) { Console.WriteLine("YES"); f = true; break; } } if (f != true) { Console.WriteLine("NO"); } } } }