#include using namespace std; typedef long long ll; typedef pair pii; #define pb push_back #define mp make_pair #define rep(i,n) for(int i=0;i<(n);++i) int main(){ cin.tie(0); ios::sync_with_stdio(false); int n,m;cin >> n >> m; vector s(n); rep(i,n) cin >> s.at(i); string t="LOVE"; rep(i,n){ rep(j,m-s.size()+1){ if(s.at(i).substr(j,4)==t){ cout << "YES" << endl; return 0; } } } cout << "NO" << endl; }