n=input() if len(n)%2!=0: print("NO") else: for i in range(0,(len(n)/2)-1): if n[i]!=n[i+len(n)/2]: print("NO") break else: print("YES")