#include using namespace std; typedef long long ll; int main(){ int n, m; cin >> n >> m; string s, ans; ans = "NO"; for (int i = 0; i < n; i++){ cin >> s; if (m >= 4){ for (int j = 0; j < m - 3; j++){ if (s.substr(j, 4) == "LOVE") ans = "YES"; } } } cout << ans << endl; return 0; }