a,b=map(int,input().split()) for i in range(a): c=input() d=c.find('LOVE') if d!=-1: print('YES') break if d==-1: print('NO')