#include #define rep(i,n) for(int i=0; i<(n); i++) using namespace std; typedef long long ll; int main(){ int n,m; cin>>n>>m; rep(i,n){ string s; cin>>s; if(s.find("LOVE") != string::npos){ cout << "YES" << endl; return 0; } } cout << "NO" << endl; }