import sys N=input() S=str(raw_input()) if N >= 4: print 'YES' sys.exit() for i in range(0,N-1): if S[i]==S[i+1]: print 'YES' sys.exit(); print 'NO'