a=str(input()) if len(a) % 2 ==1: print("NO") else : if a[0:(len(a)-1)/2]==a[((len(a)-1)/2)+1:] : print("YES") else : print("NO")